This API allows for the manual addition or deduction of points for a customer in Gameball. It provides flexibility in managing loyalty points, enabling adjustments based on specific needs or circumstances.
post/api/v4.0/integrations/transactions/manual
Request body
Example request
{
"customerId": "cust_abc12345xyz67890",
"email": "john.doe@example.com",
"mobile": "+1234567890",
"transactionId": "txn543211",
"transactionTime": "2024-10-11T15:54:10.944Z",
"username": "admin_user",
"reason": "Referral bonus",
"points": 50,
"expiryAfter": 30
}Response
Manual transaction added successfully
Example response
{
"customerId": "cust_abc12345xyz67890",
"gameballTransactionId": 11035201,
"transactionId": "txn54321221",
"points": 50,
"amount": 5
}