AdReward

Important

The max amount is per offer.

PropertyTypeDescription
purchaseRequirementPurchaseRequirementPurchase requirement information associated with a redemption
rewardAmountfloatEither a fixed amount or a percentage, depending on rewardType
maxRewardAmountfloatMaximum allowable redemption amount
rewardTypeRewardTypeThe type of reward yielded by a redemption
isMultiRedemptionbooleanIndicates whether a multiple number of redemptions is allowed for this offer
activationModelActivationModelactivation requirements for the CLO offer.Default value is "ACTIVATABLE". For auto-activated, the value is "AUTO_ACTIVATED".

PERCENT_AMOUNT_PURCHASE Ad Reward example

The 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

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