Skip to content

Get customer reward summary

Get customer profile ads rewards summary

1
GET /v2/customerProfile/getCustomerRewardSummary

Response

This endpoint returns a RewardSummaryTotals object.


Example

Request

1
GET /v2/customerProfile/getCustomerRewardSummary

Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
    "rewardsSummary": {
        "allTime": {
            "redemptionCount": 35,
            "redeemedOfferCount": 10,
            "totalRedeemingTransactionAmount": 350.55,
            "totalRewardAmount": 35.05
        },
        "pending": {
            "redemptionCount": 2,
            "totalRedeemingTransactionAmount": 5.38
        },
        "yearToDate": {
            "redemptionCount": 15,
            "redeemedOfferCount": 5,
            "totalRedeemingTransactionAmount": 150.55,
            "totalRewardAmount": 15.05
        },
        "previousCalendarYear": {
            "redemptionCount": 25,
            "redeemedOfferCount": 10,
            "totalRedeemingTransactionAmount": 250.80,
            "totalRewardAmount": 25.08
        },
        "previousMonth": {
            "redemptionCount": 7,
            "redeemedOfferCount": 3,
            "totalRedeemingTransactionAmount": 45.67,
            "totalRewardAmount": 4.06
        },
        "previousTwelveMonths": {
            "redemptionCount": 19,
            "redeemedOfferCount": 9,
            "totalRedeemingTransactionAmount": 200.34,
            "totalRewardAmount": 20.03
        },
        "currentMonth": {
            "redemptionCount": 5,
            "redeemedOfferCount": 3,
            "totalRedeemingTransactionAmount": 19.17,
            "totalRewardAmount": 1.91
        }
    },
    "requestId": "380052b4-3a64-4952-b640-ba696eb9f44b"
}