Get all point records
Get a list of all point transactions and their current values.
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 the customer. GET /customers
The unique ID of a point type. GET /point-types
Start of the time interval for filtering point records by creation time. Accepts the format YYYY-MM-DD HH:MM:SS or ISO-8601 format (YYYY-MM-DDTHH:MM:SS). All times are in the local timezone.
End of the time interval for filtering point records by creation time. Accepts the format YYYY-MM-DD HH:MM:SS or ISO-8601 format (YYYY-MM-DDTHH:MM:SS). All times are in the local timezone.
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
}
}