Skip to main content
POST
/
api
/
v1
/
job
/
kill
Kill a running job
curl --request POST \
  --url http://localhost:8080/api/v1/job/kill \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "pipelineToken": "<string>"
}
'
{
  "status": "cancelled",
  "pipelineToken": "<string>"
}

Authorizations

x-api-key
string
header
required

Optional API key for authentication (enabled via application.yaml)

Body

application/json
pipelineToken
string
required

Pipeline token of the running job

Response

Job cancelled

status
string
Example:

"cancelled"

pipelineToken
string