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

> Get the status of an import job. Returns how many records processed, succeeded, failed, and overall job state.



## OpenAPI

````yaml openapi/dataimport-v1.json GET /v1/Jobs/{jobId}
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}:
    get:
      tags:
        - Service2Service
      description: >-
        Get the status of an import job. Returns how many records processed,
        succeeded, failed, and overall job state.
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ImportJobStatusDto'
            application/json:
              schema:
                $ref: '#/components/schemas/ImportJobStatusDto'
            text/json:
              schema:
                $ref: '#/components/schemas/ImportJobStatusDto'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebServiceError'
            application/json:
              schema:
                $ref: '#/components/schemas/WebServiceError'
            text/json:
              schema:
                $ref: '#/components/schemas/WebServiceError'
components:
  schemas:
    ImportJobStatusDto:
      type: object
      properties:
        job:
          $ref: '#/components/schemas/ImportJob'
        errorsCount:
          type: integer
          format: int32
        importedRecordsCount:
          type: integer
          format: int32
        files:
          type: array
          items:
            $ref: '#/components/schemas/FileStateDto'
          nullable: true
      additionalProperties: false
    WebServiceError:
      required:
        - message
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
        message:
          minLength: 1
          type: string
        details:
          nullable: true
      additionalProperties: false
    ImportJob:
      type: object
      properties:
        id:
          type: string
          nullable: true
        entityName:
          type: string
          nullable: true
        importMode:
          type: string
          nullable: true
        format:
          type: string
          nullable: true
        createdBy:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
        finishedAt:
          type: string
          format: date-time
          nullable: true
        state:
          type: string
          nullable: true
      additionalProperties: false
    FileStateDto:
      type: object
      properties:
        fileName:
          type: string
          nullable: true
        state:
          type: string
          nullable: true
        progress:
          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

````