> ## 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

> Register multiple orders for single or multiple customers in a single API call for efficient order management and tracking.

## 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.

<Info>
  **Security:** Requires **apiKey** and **secretKey** headers.
</Info>


## OpenAPI

````yaml POST /api/v4.0/integrations/batch/orders
openapi: 3.1.0
info:
  title: Gameball API
  description: >-
    Gameball REST API v4.0 - Complete API reference for integrating loyalty,
    gamification, and customer engagement features
  version: 4.0.0
servers:
  - url: https://api.gameball.co
security:
  - bearerAuth: []
paths:
  /api/v4.0/integrations/batch/orders:
    post:
      description: >-
        Register multiple orders for single or multiple customers in a single
        API call for efficient order management and tracking.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                body:
                  type: array
                  items:
                    type: object
                    required:
                      - customerId
                      - orderId
                      - orderDate
                      - totalPaid
                    properties:
                      customerId:
                        type: string
                        description: Unique identifier for the customer.
                      orderId:
                        type: string
                        description: Unique identifier for the order.
                      orderDate:
                        type: string
                        format: date-time
                        description: Date and time of the order.
                      totalPaid:
                        type: number
                        description: Total amount paid for the order.
      responses:
        '200':
          description: Batch order processing initiated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  jobId:
                    type: number
                    description: >-
                      The assigned job ID, which is later used for status
                      verification and response retrieval.
      security:
        - apiKey: []
          secretKey: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKey:
      type: apiKey
      in: header
      name: apikey
    secretKey:
      type: apiKey
      in: header
      name: secretkey

````