Skip to main content
POST
/
api
/
v4.0
/
integrations
/
batch
/
balance-adjustment
cURL
curl --request POST \
  --url https://api.gameball.co/api/v4.0/integrations/batch/balance-adjustment \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "body": [
    {
      "customerId": "<string>",
      "amount": 123,
      "reason": "<string>"
    }
  ]
}
'
{
  "jobId": 123
}

Balance Adjustment Batch Job

Bulk balance adjustments for efficient customer balance management. This endpoint allows you to adjust customer loyalty balances for multiple customers in a single batch operation.
Security: Requires apiKey and secretKey headers.

Authorizations

apikey
string
header
required

Body

application/json
body
object[]

Response

200 - application/json

Batch balance adjustment processing initiated successfully

jobId
number

The assigned job ID, which is later used for status verification and response retrieval.