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

# List per-row import errors for a job

> Returns the stored per-row parse/normalization errors for an ingestion job (capped at 100 per job), with the uncapped failure total and truncation accounting. Lets clients explain failed or partially-failed imports.



## OpenAPI

````yaml en/openapi/v3-current/matcher.yaml get /v1/imports/contexts/{contextId}/jobs/{jobId}/errors
openapi: 3.1.0
info:
  title: Matcher APIs
  description: >-
    Complete API reference for the Matcher reconciliation engine, providing
    automated transaction matching between Midaz Ledger and external systems.
  version: 4.1.0
  license:
    name: Elastic License 2.0
    url: https://www.elastic.co/licensing/elastic-license
servers:
  - url: https://matcher.sandbox.lerian.net
security: []
paths:
  /v1/imports/contexts/{contextId}/jobs/{jobId}/errors:
    get:
      tags:
        - Ingestion
      summary: List per-row import errors for a job
      description: >-
        Returns the stored per-row parse/normalization errors for an ingestion
        job (capped at 100 per job), with the uncapped failure total and
        truncation accounting. Lets clients explain failed or partially-failed
        imports.
      operationId: listIngestionJobErrors
      parameters:
        - description: Context ID
          in: path
          name: contextId
          required: true
          schema:
            description: Context ID
            format: uuid
            type: string
        - description: Job ID
          in: path
          name: jobId
          required: true
          schema:
            description: Job ID
            format: uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListJobErrorsResponse'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    ListJobErrorsResponse:
      additionalProperties: false
      properties:
        errorCap:
          description: Maximum number of row errors stored per job
          examples:
            - 100
          format: int64
          minimum: 0
          type: integer
        items:
          description: Stored row errors ordered by row number (capped at errorCap per job)
          items:
            $ref: '#/components/schemas/JobRowErrorResponse'
          maxItems: 100
          type:
            - array
            - 'null'
        storedErrors:
          description: Number of row errors actually stored for this job
          examples:
            - 100
          format: int64
          minimum: 0
          type: integer
        totalErrors:
          description: Total number of failed rows for the job (may exceed storedErrors)
          examples:
            - 1000
          format: int64
          minimum: 0
          type: integer
        truncated:
          description: True when more rows failed than were stored
          examples:
            - true
          type: boolean
      required:
        - items
        - totalErrors
        - storedErrors
        - errorCap
        - truncated
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    JobRowErrorResponse:
      additionalProperties: false
      properties:
        field:
          description: Source field the error relates to; empty when the whole row failed
          examples:
            - amount
          type: string
        message:
          description: Human-readable error reason
          examples:
            - invalid decimal
          type: string
        row:
          description: 1-based row number in the uploaded file
          examples:
            - 15
          format: int64
          minimum: 0
          type: integer
      required:
        - row
        - message
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Bearer token authentication (format: "Bearer {token}")'

````