Delete a Pipeline

DELETE /pipelines/ID

Authorization Header

  • Bearer token: OAuth 2.0 API access token. 

Parameters

  • format : json or xml. This will override Request Accept header.
  • human : true or false. It makes response in structured form, useful only when calling API through curl or browser.

Deletes the pipeline. The delete will succeed only when no ongoing Job is still associated with the Pipeline. Otherwise an error is returned.

Response

HTTP 200 - OK

Example:

DELETE /pipelines/ID
curl -X DELETE -H "Authorization: Bearer um9VmyJKTPGFqpkL_THjGE5rkXqfURDYqQ8MTBVidG3PtwkfABIdx6s_z9WlFl4_j" "https://api.xvid.com/v1/pipelines/54721f1ee4b09edbcfd16244?human=true"
{
    "result": {
        "status": "SUCCESS"
    }
}
  • No labels