Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

     Content Without Boundaries

...

On This Page

Table of Contents

Overview

DryvIQ REST API supports deleting jobs based on a job ID or based on parameters. You can delete jobs using the following requests.

Info

System jobs can’t be deleted.

Delete a Job

The call below deletes a single job.

Code Block
DELETE {{url}}v1/jobs/{{job}}

Delete Multiple Jobs

You have the option of deleting multiple jobs based on the job ID or deleting all jobs that meet specified parameters.

Delete Multiple Jobs by ID

The call below deletes multiple jobs. The jobs need to be properly identified by the job ID. Each ID should be separated by a comma.

Code Block
DELETE {{url}}v1/jobs?jobs=job1,job2,job3

Delete Multiple Jobs by Query

The call below deletes multiple jobs based specified parameters.

Code Block
DELETE {{url}}v1/jobs?parameter=value&parameter=value


In the following example, all jobs that have Amazon S3 as the source and contain the text “test” in the name will be deleted.

Code Block
DELETE  {{url}}v1/jobs?sources=amazon-s3&q=test