Skip to main content
POST
/
api
/
v4.0
/
integrations
/
batch
/
orders
cURL
curl --request POST \
  --url https://api.gameball.co/api/v4.0/integrations/batch/orders \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --header 'secretkey: <api-key>' \
  --data '
{
  "body": [
    {
      "customerId": "<string>",
      "orderId": "<string>",
      "orderDate": "2023-11-07T05:31:56Z",
      "totalPaid": 123
    }
  ]
}
'
{
  "jobId": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.gameball.co/llms.txt

Use this file to discover all available pages before exploring further.

Track Orders Batch Job

Bulk order processing for efficient order management and tracking. This endpoint allows you to register multiple orders for single or multiple customers in a single API call, improving performance and reducing network overhead.
Security: Requires apiKey and secretKey headers.

Authorizations

apikey
string
header
required
secretkey
string
header
required

Body

application/json
body
object[]

Response

200 - application/json

Batch order processing initiated successfully

jobId
number

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