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

# Check Batch Status

> Monitor batch job status and results for ongoing batch operations.

## Check Batch Status

Monitor batch job status and results for ongoing batch operations. This endpoint allows you to track the progress of batch jobs and retrieve detailed results and error information.


## OpenAPI

````yaml GET /api/v4.0/integrations/batches/{batchId}/status
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/batches/{batchId}/status:
    get:
      description: Monitor batch job status and results for ongoing batch operations.
      parameters:
        - name: batchId
          in: path
          required: true
          schema:
            type: string
          description: Unique identifier for the batch operation
      responses:
        '200':
          description: Batch status retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  batchId:
                    type: string
                  status:
                    type: string
                    enum:
                      - pending
                      - processing
                      - completed
                      - failed
                  progress:
                    type: number
                  totalItems:
                    type: number
                  processedItems:
                    type: number
                  failedItems:
                    type: number
                  results:
                    type: array
                  errors:
                    type: array
      security:
        - apiKey: []
          secretKey: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKey:
      type: apiKey
      in: header
      name: apikey
    secretKey:
      type: apiKey
      in: header
      name: secretkey

````