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

# Delete v1 jobs jobid

> Delete a job and all its data (file, errors, history). Permanent - can't be undone.



## OpenAPI

````yaml openapi/dataimport-v1.json DELETE /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}:
    delete:
      tags:
        - Service2Service
      description: >-
        Delete a job and all its data (file, errors, history). Permanent - can't
        be undone.
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
        '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:
    WebServiceError:
      required:
        - message
        - name
      type: object
      properties:
        name:
          minLength: 1
          type: string
        message:
          minLength: 1
          type: string
        details:
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        JWT Authorization header using the Bearer scheme. Example: "Bearer
        {token}"
      name: Authorization
      in: header

````