> ## Documentation Index
> Fetch the complete documentation index at: https://docs.palazzo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get batch errors



## OpenAPI

````yaml GET /products/ingestions/{batch_id}/errors
openapi: 3.1.0
info:
  title: Products Ingestion API
  version: 0.1.0-preview
  description: >
    Asynchronous product ingestion (append/upsert). Deduplication by
    `external_id` (product) and `sku` (variant).

    Policy: partial acceptance. No idempotency for now. Tenancy comes from
    token.
servers:
  - url: https://api.example.com
    description: Production (placeholder)
  - url: https://sandbox.api.example.com
    description: Sandbox (placeholder)
security:
  - bearerAuth: []
paths:
  /products/ingestions/{batch_id}/errors:
    get:
      summary: Paginated list of errors per batch item
      parameters:
        - name: batch_id
          in: path
          required: true
          schema:
            type: string
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Cursor'
      responses:
        '200':
          description: Error page
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchErrorsResponse'
        '401':
          $ref: '#/components/responses/Problem'
        '403':
          $ref: '#/components/responses/Problem'
        '404':
          $ref: '#/components/responses/Problem'
        default:
          $ref: '#/components/responses/Problem'
      security:
        - bearerAuth: []
components:
  parameters:
    Limit:
      name: limit
      in: query
      description: Page size (max 500 by default).
      schema:
        type: integer
        minimum: 1
        maximum: 500
        default: 100
    Cursor:
      name: cursor
      in: query
      description: Pagination cursor.
      schema:
        type: string
  schemas:
    BatchErrorsResponse:
      type: object
      additionalProperties: false
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/BatchError'
        next_cursor:
          type: string
          nullable: true
      required:
        - data
    BatchError:
      type: object
      additionalProperties: false
      properties:
        index:
          type: integer
          description: Index of the item in the input array
        external_id:
          type: string
          nullable: true
        sku:
          type: string
          nullable: true
        errors:
          type: array
          minItems: 1
          items:
            type: object
            additionalProperties: false
            properties:
              field:
                type: string
              code:
                type: string
              message:
                type: string
            required:
              - field
              - code
      required:
        - index
        - errors
    Problem:
      type: object
      additionalProperties: false
      properties:
        type:
          type: string
          format: uri
        title:
          type: string
        detail:
          type: string
        status:
          type: integer
        instance:
          type: string
        errors:
          type: array
          items:
            type: object
            additionalProperties: false
            properties:
              code:
                type: string
              field:
                type: string
              message:
                type: string
      required:
        - title
        - status
  responses:
    Problem:
      description: Error in RFC 7807 format
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````