# Delete an interval job

Permanently deletes a job and all its results. Only interval jobs
can be deleted via this endpoint.

Endpoint: DELETE /job/{id}
Version: 4.0
Security: ApiKeyAuth, BearerAuth, BasicAuth

## Security:

  - `ApiKeyAuth` (unknown)
    apiKey in header x-api-key

  - `BearerAuth` (unknown)
    http bearer JWT

  - `BasicAuth` (unknown)
    http basic

## Path parameters:

  - `id` (string, required)
    MongoDB ObjectId of the job.

## Response 200:

  - `200` (unknown)
    Deletion confirmed or error

## Response 200 fields (application/json):

  - `error` (boolean)
    Example: false

  - `message` (string)
    Example: job 64f1c2d3e4b5a6c7d8e9f0a1 removed

## Response 401:

  - `401` (unknown)
    Missing or invalid credentials.

## Response 401 fields (application/json):

  - `error` (string)
    Example: user not found

  - `message` (string)

## Response 403:

  - `403` (unknown)
    Authenticated but not subscribed to this source/country.

## Response 403 fields (application/json):

  - `error` (string)
    Example: user not found

  - `message` (string)

