Cashback & Redemptions
Handle customer points by rewarding cashback, redeeming points, or issuing refunds. These APIs allow you to manage point balances based on purchases or other transactions.
Available APIs
POST - Reward Cashback
This API awards loyalty points to customers in Gameball through a cashback program based on the amount .
Security: Requires apikey and secretkey headers.
Channel Merging Available If your system uses different customer IDs across multiple channels (e.g., online and offline), Gameball's channel merging feature helps unify customer profiles. By including the customer’s mobile number or email (based on your merging configuration) with each request, Gameball will combine activities into a single profile.For more information, head to the Channel Merging Guide.
Request
Body
application/json
customerId string
Required
Unique identifier for the customer that you can reference across the customer’s whole lifetime. Could be a database ID, random string, email or anything that uniquely identifies the customer.
email string
Optional
Customer's email address.
Note: This is required if your account uses email-based channel merging.
mobile string
Optional
Customer's mobile number .
Note: This is required if your account uses mobile-based channel merging.
transactionId string
Required
A unique identifier for a transaction in your system (e.g., order number or invoice number). This ID is critical for managing transaction lifecycle events such as reversals, cancellations, or refunds in Gameball.
transactionTime dateTime
Required
The time of the transaction in your system (e.g., order datetime, invoice datetime).
amount number
Required
Monetary value of the transaction for which the customer will be rewarded, based on the Cashback program configuration.
merchant object
Optional
This object contains details about the specific merchant involved in the transaction, which is particularly important for businesses managing multiple merchants or branches under the same Gameball account. This object can provide identifying information about both the main merchant and any associated branch where the transaction took place.
Sample Request
Response
application/json
customerId string
Unique identifier for the customer that you can reference across the customer’s whole lifetime. Could be a database ID, random string, email, or anything that uniquely identifies the customer.
gameballTransactionId number
Unique identifier for the transaction in the Gameball system.
rewardAmount number
The monetary value equivalent of the points rewarded to the customer for the transaction.
Example: If the customer earns 50 points for their purchase and each point is worth $0.10, the rewardAmount
will be $5.
rewardEquivalentPoints number
The number of points rewarded to the customer for the transaction.
Example: If the customer earns 50 points for their purchase, the rewardEquivalentPoints
will be 50.
Sample Response
POST - Redeem
This API enables customers to redeem loyalty points as a payment method in Gameball, allowing them to use points in place of monetary value during transactions. By providing details such as customerId
and amount, this endpoint facilitates point-based redemptions within the purchase processز
Security: Requires apikey and secretkey headers.
Channel Merging Available If your system uses different customer IDs across multiple channels (e.g., online and offline), Gameball's channel merging feature helps unify customer profiles. By including the customer’s mobile number or email (based on your merging configuration) with each request, Gameball will combine activities into a single profile.For more information, head to the Channel Merging Guide.
Request
Body
application/json
customerId string
Required
Unique identifier for the customer that you can reference across the customer’s whole lifetime. Could be a database ID, random string, email, or anything that uniquely identifies the customer.
email string
Optional
Customer's email address.
Note: This is required if your account uses email-based channel merging.
mobile string
Optional
Customer's mobile number .
Note: This is required if your account uses mobile-based channel merging.
transactionId string
Required
A unique identifier for a transaction in your system (e.g., order number or invoice number). This ID can be used to reverse, cancel, or refund any reward or redemption transactions in Gameball.
transactionTime string
Required
The time of the transaction in your system (e.g., order datetime, invoice datetime).
amount float
Optional
The actual monetary value the customer wants to redeem. This will be deducted from their points balance based on the redemption factor. For instance, if the customer wants to redeem $10 and the redemption factor is 0.1, then 100 points will be deducted from their balance to cover this amount.
Note: Only one of
amount
,points
, orholdReference
must be provided for the redemption.
points integer
Optional
The number of points the customer wants to redeem from their balance. This allows the customer to specify exactly how many points they wish to use.
Note: Only one of
amount
,points
, orholdReference
must be provided for the redemption.
holdReference string
Optional
A unique reference obtained from the Hold Points API. If provided, the points in the hold will be used. It is used when points have been reserved previously , allowing the system to redeem the points that are on hold.
Example: If you previously used the Hold Points API to hold 100 points, you would provide the holdReference
obtained from that hold transaction to redeem the 100 points that were held
Note: Only one of
amount
,points
, orholdReference
must be provided for the redemption.
merchant object
Optional
This object contains details about the specific merchant involved in the transaction, which is particularly important for businesses managing multiple merchants or branches under the same Gameball account. This object can provide identifying information about both the main merchant and any associated branch where the transaction took place.
hash string
Optional
A unique, rotating number generated for each customer, used as an additional layer of verification during redemptions. For more details on how the hash is generated and validated, refer to the Customer's Hash section.
otp string
Optional
One-time password (OTP) required if OTP is enabled for the customer. This OTP serves as an additional layer of security for verifying the redemption request. For more details on how OTP works and when it is required, refer to the Transaction Validation section.
Sample Request
Response
application/json
customerId string
Unique identifier for the customer that you can reference across the customer’s whole lifetime. Could be a database ID, random string, email, or anything that uniquely identifies the customer.
gameballTransactionId string
Unique identifier for the transaction in the Gameball system.
transactionId string
A unique identifier for the transaction in your system (e.g., order number or invoice number). This ID can be used to reverse, cancel, or refund any reward or redemption transactions in Gameball.:
redeemAmount number
The amount of money redeemed in the transaction, based on the points redeemed.
Example: If a customer redeems points equivalent to $10 off their purchase, the redeemAmount
will be 10.0
.
redeemEquivalentPoints number
The number of points used to redeem the specified monetary value in the transaction.
Example: If a customer uses 100 points to redeem $10, the redeemEquivalentPoints
will be 100
.
Sample Response
POST - Refund
This API processes refunds or cancellations of cashback and points redemption transactions in Gameball. By providing a reverseTransactionId
, Gameball identifies the related cashback or redemption transaction and adjusts the customer's points balance accordingly to reflect the refunded or canceled transaction.
Security: Requires apikey and secretkey headers.
Channel Merging Available If your system uses different customer IDs across multiple channels (e.g., online and offline), Gameball's channel merging feature helps unify customer profiles. By including the customer’s mobile number or email (based on your merging configuration) with each request, Gameball will combine activities into a single profile.For more information, head to the Channel Merging Guide.
Request
Body
application/json
customerId string
Required
Unique identifier for the customer that you can reference across the customer’s whole lifetime. Could be a database ID, random string, email, or anything that uniquely identifies the customer.
email string
Optional
Customer's email address.
Note: This is required if your account uses email-based channel merging.
mobile string
Optional
Customer's mobile number.
Note: This is required if your account uses mobile-based channel merging.
refundTransactionId string
Required
A unique identifier for the refund process transaction in your system (e.g., refund number or transaction ID). This ID helps track and reference the refund process itself.
Example: If a refund is processed for an item, the refundTransactionId
could be REFUND-98765
, which refers to the specific new refund transaction.
reverseTransactionId string
Required
The unique transaction ID representing the original order being refunded, reversed, or canceled. This ID is sent as reverseTransactionId
in the payload and links to the previous transaction.
Example: If a customer requests a refund for an order previously made with transaction ID ORDER-12345
, the reverseTransactionId
will be ORDER-12345
to indicate which order is being refunded.
transactionTime string
Required
The timestamp of the original transaction in your system (e.g., order datetime, invoice datetime).
refundAmount float
Optional
The amount to be refunded from the original transaction. The entire transaction is refunded if this field is not provided.
merchant object
Optional
This object contains details about the specific merchant involved in the transaction, which is particularly important for businesses managing multiple merchants or branches under the same Gameball account. This object can provide identifying information about both the main merchant and any associated branch where the transaction took place.
lineItems array
Optional
An array of items from the original transaction that are being refunded. If provided, only the items listed in this array will be refunded from the reverseTransactionId
. If this field is not provided, the entire transaction specified by the reverseTransactionId
will be refunded.
Sample Request
Response
application/json
gameballTransactionId string
Unique identifier for the refund transaction in the Gameball system.
refundTransactionId string
Unique identifier for the refund process transaction in your system (e.g., refund number or transaction ID). This ID helps track and reference the refund process itself.
Example: If the refund process for an order has a transaction ID REFUND-54321
, this ID will be used to track the refund operation.
refundAmount number
The amount refunded from the original transaction.
Example: If a customer was originally charged $100 and you refunded $40, the refundAmount
will be 40
.
refundEquivalentPoints number
The number of points equivalent to the monetary value refunded in the transaction.
Example: If $40 is refunded and your points-to-currency ratio is 1 point = $0.10, then the refundEquivalentPoints
would be 400
points.
Sample Response
Last updated