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

# Get v1 jobs jobid errors

> Returns detailed errors for records that failed validation.



## OpenAPI

````yaml openapi/dataimport-v1.json GET /v1/Jobs/{jobId}/errors
openapi: 3.0.1
info:
  title: DataImport.Api
  version: v1
servers:
  - url: https://{host}/dataimport
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v1/Jobs/{jobId}/errors:
    get:
      tags:
        - Service2Service
      description: Returns detailed errors for records that failed validation.
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ImportErrorDetailsResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ImportErrorDetailsResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ImportErrorDetailsResponse'
components:
  schemas:
    ImportErrorDetailsResponse:
      type: object
      properties:
        jobId:
          type: string
          nullable: true
        errorsCount:
          type: integer
          format: int32
        files:
          type: array
          items:
            $ref: '#/components/schemas/FileInfo'
          nullable: true
      additionalProperties: false
    FileInfo:
      type: object
      properties:
        fileName:
          type: string
          nullable: true
        errorDetails:
          type: array
          items:
            $ref: '#/components/schemas/FileErrorDetails'
          nullable: true
      additionalProperties: false
    FileErrorDetails:
      type: object
      properties:
        chunkId:
          type: string
          nullable: true
        name:
          type: string
          nullable: true
        message:
          type: string
          nullable: true
        details:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example: "Bearer
        {token}"
      name: Authorization
      in: header

````