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 |
| maxNumRedemptions | int | 1 when isMultiRedemption=false, null or omitted when isMultiRedemption=true |
| isMultiTier | boolean | Indicates whether the reward is tiered |
| activationModel | ActivationModel | Activation requirements for the CLO offer. Default value is "ACTIVATABLE". For auto-activated, the value is "AUTO_ACTIVATED". |
| publisherAnnonations | PublisherAnnonations | A set of indicators that shows different types of offers based on billing and user segments. |
PERCENT_AMOUNT_PURCHASE Ad Reward example
PERCENT_AMOUNT_PURCHASE Ad Reward exampleThe following example depicts a 5% cash back in-store offer.
"rewardType": "FIXED_AMOUNT_PURCHASE",
"rewardAmount": 10.0,
"maxRewardAmount": 10.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 100.0,
"purchaseChannels": [
"Online"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": ["WELCOME_BASKET", "PUBLISHER_FUNDED"]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": 50.0,
"maxRewardAmount": 50.0,
"isMultiRedemption": false,
"maxNumRedemptions": 1,
"isMultiTier": false,
"purchaseRequirement": {
"minSpendAmount": 75.0,
"purchaseChannels": [
"Online",
"InStore"
],
"purchaseTypes": [
"Subscription"
],
"merchantUrlLinkClickRequired": false
},
"activationModel": "ACTIVATABLE",
"publisherAnnotations": ["PUBLISHER_FUNDED"]