Portal

A Merchant object represents your business and it's configurations in Ansa.

ℹ️

Amounts are integers

All amount parameters and returned values are integers. These amounts represent the lowest denomination of the provided currency code, such as cents for USD. For example, "amount": 1000 would indicate an amount of $10.00.

Merchant Attributes

FieldTypeDescriptionExample value
idstringUnique identifier for the merchant.2aa3d415-8256-4d0e-97a1-7cd0a09e0230
metadataobjectMetadata object containing details about the merchant
namestringThe merchant's nameansa merchant

Metadata Attributes

The Merchant object has an associated metadata object that will also be returned when you request the Merchant.

FieldTypeDescriptionExample value
appReloadConfigobjectApp Reload object containing details about the merchant reload options
autoReloadConfigobjectAuto reload object containing details about the merchant's auto reload settings
omsProviderstringThe OMS (order management software) providersquare
paymentProcessorstringThe payment processorstripe
promotionsobjectPromotions object containing details about promotions
userReferralConfigobjectUser referral object containing details about user referral configurations

Auto reload attributes

FieldTypeDescriptionExample value
minimumAutoReloadThresholdintegerThe minimum balance required in the customers' wallets before the auto-reload is triggered. If the user balance is below this threshold, the reload amount defined by the user will be added to their balance.1000
minimumAutoReloadAmountintegerThe lowest amount that a customer can choose to reload to their balance1000
maximumAutoReloadAmountintegerThe maximum amount of money that customers can choose to reload to their balance.

Customers cannot choose the reload amount that is greater than the reload maximum set.
1000

App reload attributes

FieldTypeDescriptionExample value
presetAmountsobjectThe preset reload options shown to the client.

At most one object in the array will have isMostPopular set to true.
[ { "id": "preset_1", "amount": 1000, "isMostPopular": true }, { "id": "preset_2", "amount": 2500, "isMostPopular": false }, { "id": "preset_3", "amount": 5000, "isMostPopular": false } ]
allowCustomAmountbooleanToggle for clients' to allow custom reload amountstrue

Promotions attributes

FieldTypeDescriptionExample value
typestringPromotion type. Can be one of:

first_top_up
Add funds to the user's wallet once on their first balance add.

once_per_tier
Add funds to the user's wallet only once per tier.

tiered
Add funds to the user's wallet each time they add balance, provided they meet the minimum transaction requirements.
first_top_up
rewardTiersobjectPromotions can have multiple tiers, each with its own minimum transaction requirement. The Ansa platform automatically identifies and applies the highest reward tier for which a user qualifies.

minTransactionRequirement
This is the minimum "add balance" amount that is eligible for a reward.

promotionAmount
The promotional bonus added to the user's balance.
[ { "minTransactionRequirement": 2000, "promotionAmount": 500 }, { "minTransactionRequirement": 5000, "promotionAmount": 1500 } ]

User referral attributes

FieldTypeDescriptionExample value
enabledbooleanIf true, user referral's are enabledtrue
redemptionEventstringEither add_balance or create_user. This determines which event triggers the user referral bonus.add_balance
redemptionThresholdAmountintegerOnly applies if redemptionEvent is add_balance. This is the minimum value required to trigger the user referral bonus100
senderCreditAmountintegerThe user referral bonus for the user who is doing the referral100
recipientCreditAmountintegerThe user referral bonus for the user who is claiming a referral100