Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/c09a180e-1d58-4015-814d-5113030bf710
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the job.
|
|
|
|
status
|
The status of the job.
|
|
- failed
- finished
- queued
- running
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/jobs/c09a180e-1d58-4015-814d-5113030bf710" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQxMiIsImVtYWlsIjoiZW1haWwtMjgxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjA1MDY2NjB9.GACiZZOSzW3Su0RgPIETX8EFlCxf5ivP5TxYyRUpM3Q" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "c09a180e-1d58-4015-814d-5113030bf710",
"created_at": "2016-04-06T00:17:40Z",
"url": "/v2/jobs/c09a180e-1d58-4015-814d-5113030bf710"
},
"entity": {
"guid": "c09a180e-1d58-4015-814d-5113030bf710",
"status": "queued"
}
}
Headers