Get customer rewards summary

Use this GET call to retrieve customer profile ads rewards summary

GET /v2/customerProfile/getCustomerRewardSummary

Response

This endpoint returns a RewardSummaryTotals object.

Example

Request

GET /v2/customerProfile/getCustomerRewardSummary

Response

{
    "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"
}