Portal

A User Referral object represents a referral relationship between Customers .

Sender is a user who gives their referral code to others for sign up. Recipient is the user who uses that code to sign up. For instance, if User A shares their code with User B for sign up, User A becomes the sender and User B the recipient.

There are two statuses for a user referral: claimed and redeemed. claimed is when the recipient has used the referral code, but has not yet triggered the redemption event. The redemption event is when the referral credit is given to both the recipient and the sender (if applicable). redeemed is when the redemption event has occurred and the referral credits have been distributed.

There are two types of redemption events that are currently supported: create_user and add_balance. For create_user, the redemption of credit occurs when the recipient user object is created. This means that the claim and redeem of user referral happen simultaneously. For add_balance, credits are redeemed when the recipient adds a balance greater than or equal to the redemptionThresholdAmount.

User Referral Attributes

FieldTypeDescriptionExample value
idstringUnique identifier for the user referral.2aa3d415-8256-4d0e-97a1-7cd0a09e0230
senderIdstringIdentifier of the sender customer.83ac5214-5c2b-4d41-83a2-ffc58903f392
recipientIdstringIdentifier of the recipient customer.
senderCreditAmountintegerThe credit amount that the sender receives when this user referral is redeemed. The integer amount is in the lowest denomination of the merchant currency code. 500 (equivalent to $5 USD)
recipientCreditAmountintegerThe credit amount that the recipient receives when this user referral is redeemed. The integer amount is in the lowest denomination of the merchant currency code.500 (equivalent to $5 USD)
redemptionEventstringThe redemption event specification.

Possible values are:
- create_user
- add_balance
redemptionThresholdAmountintegerThe threshold of amount used for specific redemptionEvent. The integer amount is in the lowest denomination of the merchant currency code.
statusstringThe user referral status.

Possible values are:
- claimed
- redeemed