GET api/v1/Points/Sums?contactId={contactId}&type={type}
Retrieve array of pointsums for specified contact.
Request Information
URI Parameters
| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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": "2025-11-03T21:35:38.5152363+01:00"
  },
  {
    "ContactId": 1,
    "Type": "sample string 1",
    "Sum": 2.0,
    "LastModified": "2025-11-03T21:35:38.5152363+01:00"
  }
]