GET api/v1/Points/Sums?contactId={contactId}&type={type}

Retrieve array of pointsums for specified contact.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactId

Id of contact to retrieve pointsums for

integer

Required

type

Type of points to retrieve

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ReadPointSumDto
NameDescriptionTypeAdditional information
ContactId

Id of contact. First part of the unique point sum id.

integer

None.

Type

Type pf points. Second part of the unique point sum id.

string

Max length: 32

Sum

The sum of all the points with the same contact id and type

decimal number

None.

LastModified

Datetime of when the point sum was last modified

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ContactId": 1,
    "Type": "sample string 1",
    "Sum": 2.0,
    "LastModified": "2024-04-26T04:37:50.1525612+00:00"
  },
  {
    "ContactId": 1,
    "Type": "sample string 1",
    "Sum": 2.0,
    "LastModified": "2024-04-26T04:37:50.1525612+00:00"
  }
]