Delete a Job
Delete one or more Run:AI Jobs.
General¶
URL: http://<service-url>/api/v1/jobs
Method: DELETE
Request¶
Following JSON:
[<Job Identifier 1>, .... ,<Job Identifier n>]
Job identifier definition:
{
"name": "<job-name>",
"project": "<job-project>"
}
Examples¶
curl --location --request DELETE 'http://example.com/api/v1/jobs' \
--header 'Content-Type: application/json' \
--data-raw '[
{"name" : "job-name-0", "project" : "team-a"},
{"name" : "job-name-1", "project" : "team-a"}
]'
Last update: January 3, 2021