Important
The max amount is per offer.
| Property | Type | Description |
|---|---|---|
| purchaseRequirement | PurchaseRequirement | Purchase requirement information associated with a redemption |
| rewardAmount | float | Either a fixed amount or a percentage, depending on rewardType |
| maxRewardAmount | float | Maximum allowable redemption amount |
| rewardType | RewardType | The type of reward yielded by a redemption |
| isMultiRedemption | boolean | Indicates whether a multiple number of redemptions is allowed for this offer |
| activationModel | ActivationModel | activation requirements for the CLO offer.Default value is "ACTIVATABLE". For auto-activated, the value is "AUTO_ACTIVATED". |
PERCENT_AMOUNT_PURCHASE Ad Reward example
PERCENT_AMOUNT_PURCHASE Ad Reward exampleThe following example depicts a 5% cash back in-store offer.
{
"rewardType": "PERCENT_AMOUNT_PURCHASE",
"rewardAmount": 5.0,
"maxRewardAmount": 25.0,
"isMultiRedemption": true,
"purchaseRequirement": {
"minSpendAmount": 15.0,
"purchaseChannel": "InStore"
},
"activationModel": "ACTIVATABLE"
}FIXED_AMOUNT_PURCHASE Ad Reward example
FIXED_AMOUNT_PURCHASE Ad Reward exampleThe following example depicts a fixed $10 cash back online offer, which is also auto-activated
{
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 10.0,
"maxRewardAmount": 10.0,
"isMultiRedemption": true,
"purchaseRequirement": {
"minSpendAmount": 75.0,
"purchaseChannel": "InStore"
},
"activationModel": "AUTO_ACTIVATED"
}