Get customer reward by ID
GET /v1/public/customers/{customerId}/rewards/{rewardId}
Returns one reward instance belonging to the specified customer.
Authorization
X-API-Key required with the customers:read scope
Parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
customerId | path | string | Yes | The customer's returned id or externalId. |
rewardId | path | string | Yes | The customer reward's returned id or externalId, not its template ID. |
Request example
curl -X GET "https://api.remyrewards.co.uk/v1/public/customers/66c735e253f2836fbe941235/rewards/66c735e253f2836fbe941236" \
-H "Accept: application/json" \
-H "X-API-Key: YOUR_API_KEY"Responses
| Status | Description |
|---|---|
200 | Customer reward retrieved. |
401 | The API key is missing or invalid. |
403 | The API key is valid but does not have the required scope. |
404 | The requested integration resource was not found. |
429 | A rate or concurrency limit was exceeded. |
Success response example
{
"success": true,
"data": {
"id": "66c735e253f2836fbe941236",
"title": "Free Coffee",
"status": "active",
"expiry": "2026-09-23T11:00:00.000Z"
}
}