curl --request DELETE \
--url https://{controlPlaneURL}/api/svc/v1/jobs/{jobId}/runs/{jobRunName} \
--header 'Authorization: Bearer <token>'
{
"message": "<string>"
}
Delete Job Run for provided jobRunName and jobId
curl --request DELETE \
--url https://{controlPlaneURL}/api/svc/v1/jobs/{jobId}/runs/{jobRunName} \
--header 'Authorization: Bearer <token>'
{
"message": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Application Id of JOB
Job run name of the application
Job Run deleted
The response is of type object
.
Was this page helpful?