Delete job
DELETE/subscriptions/jobs/:job_uuid
Delete job
Request
Path Parameters
job_uuid UUIDrequired
The unique identifier of the job.
Responses
- 204
- 409
Success. The job was deleted.
Write conflict. Unable to perform the operation at this time.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
errors Error[]required
status stringrequired
The HTTP response code of the error.
title stringrequired
A brief summary of the error.
detail string
Optional additional detail about the error.
meta object
Additional supporting meta data for the error.
{
  "errors": [
    {
      "status": 500,
      "title": "Internal server error",
      "detail": "An internal error has occurred.",
      "meta": {
        "missing_ids": [
          "e7d50bd5-1833-43c0-9848-f9d325b08be8"
        ]
      }
    }
  ]
}
{
  "errors": [
    {
      "title": "Write Conflict",
      "status": "409"
    }
  ]
}
Loading...