# kill job by id

Stops a specified job ID.

Endpoint: POST /job/kill/{job_id}
Version: 3
Security: ApiKeyAuth

## Path parameters:

  - `job_id` (integer, required)
    the job id
    Example: 19

## Response 200 fields (application/json):

  - `body` (EmptyObject (object) or object)
    - `job_id` (string)
      unique identifier of job
      Example: "19"
    - `former_status` (string)
      current status of the job
      Enum: "queued", "running", "killed", "success", "error"


