Get all customer point records
Get information about all customer point records.
Reward points are the non-monetary loyalty currency earned by customers through purchases and other qualifying actions. Each point record represents a single earning or redemption event. Filter by point_type_id to narrow results to a specific point program.
Related: GET /point-types
Path parameters
The unique ID of the customer.
Query parameters
The number of records to return in API response.
⚠️ We recommended adjust the batch size based on processing time. Depending on the response time of the request. Default value of 100 records is used if count parameter is not set.
The number of records from a collection to skip. Default value of 0 is used when parameter offset is not set.
Name of the sorting parameter. You can sort by any of the first level parameters from the resource response. Response is sorted by the specified field.
Direction of sorting the response list.
The unique ID of a point type. GET /point-types
Headers
The unique ID of the language code by ISO 639-1.
Response
OK
Example response
{
"data": {
"points": [
{
"point_id": "8bd48117006496e0b1788109b8",
"customer_id": "87af991126405bf8e7dfb36045",
"assigned_points": 50,
"available_points": 700,
"point_type_id": "81eaeea13b8984a169c490a325",
"partner_id": "86e05affc7a7abefcd513ab400",
"valid_to": "2023-09-16 23:59:59",
"state": 1,
"created_at": "2016-06-30 15:05:49",
"note": "Birthdate point reward"
}
],
"total_items": 1
}
}