GET api/v1/Points/Totals?type={type}

Retrieve array of pointtotals.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

Type of points to retrieve

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ReadPointTotalDto
NameDescriptionTypeAdditional 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
  }
]