When enabled, newly activated gift card products that match the optional country and currency filters are added to this campaign automatically. Applies to gift cards only — premium options, prepaid cards, and merchant cards with vendor fees are excluded. Affects future rewards only and does not retroactively add products to unredeemed rewards.
On read, enabled is true whenever a rule is configured; countries and currencies are only present when the rule actually filters on them — an absent filter matches all values.
On write:
- Omit the field on
PUT to leave the existing rule unchanged.
- Send
null or { "enabled": false } to clear any existing rule.
- Send
{ "enabled": true, ... } to upsert. countries and currencies are
optional; when present they must contain at least one entry. To match all
countries (or all currencies), simply omit the key.
- An empty object (
{}) is rejected because enabled is required — use
{ "enabled": false } or null to clear the rule.