Skip to content

Get Redemptions By Id

This endpoint gets information on the redemption by an redemptionId and customerId.

1
GET /customers/<customerId>/redemptions/<redemptionId>

Input Parameters

Path Param Type Required Description
customerId int Required Unique identifier for customer
redemptionId int Required Unique identifier of the redemption

Output

This endpoint returns RedemptionResponse object.


Example

Request

1
GET /v1/customers/2349/redemptions/23

Response

1
2
3
4
5
6
7
8
9
    {
        "offerRedemptionId": 23,
        "merchantName": "Ace Hardware",
        "offerId": 1000024990,
        "customerId": 2349,
        "generatedDt": "2021-10-25T00:00:00",
        "paidDt": "2021-11-08T00:00:00",
        "rewardAmount": 2
    }