Delete job
DELETEhttps://euwest.api.elasticpath.com/v2/subscriptions/jobs/:job_uuid
Delete job
Request
Path Parameters
job_uuid UUIDrequired
The unique identifier of the job.
Responses
- 204
- 409
Success. The job was deleted.
Write conflict. Unable to perform the operation at this time.
- application/json
- Schema
- Example (from schema)
- Example
Schema
errors Error[]required
{
"errors": [
{
"status": 500,
"title": "Internal server error",
"detail": "An internal error has occurred.",
"meta": {
"missing_ids": [
"e7d50bd5-1833-43c0-9848-f9d325b08be8"
]
}
}
]
}
{
"errors": [
{
"title": "Write Conflict",
"status": "409"
}
]
}
Authorization: http
name: BearerTokentype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X DELETE 'https://euwest.api.elasticpath.com/v2/subscriptions/jobs/:job_uuid' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear