GET api/v1/Points/Totals?type={type}
Retrieve array of pointtotals.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type |
Type of points to retrieve |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ReadPointTotalDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Type |
Type pf points. |
string |
Max length: 32 |
| Sum |
The sum of all the points with the type |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Type": "sample string 1",
"Sum": 2.0
},
{
"Type": "sample string 1",
"Sum": 2.0
}
]