Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/ebf3ab85-560c-4e72-a3f8-49d03c01f637
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/ebf3ab85-560c-4e72-a3f8-49d03c01f637" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwNCIsImVtYWlsIjoiZW1haWwtMjk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDE2NjI2MTl9.uTWkTLvYYfbUgSbxAKW72A-1XD0XIuuRRio8OPcuqR4" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "ebf3ab85-560c-4e72-a3f8-49d03c01f637",
"created_at": "2015-08-31T21:50:19Z",
"url": "/v2/jobs/ebf3ab85-560c-4e72-a3f8-49d03c01f637"
},
"entity": {
"guid": "ebf3ab85-560c-4e72-a3f8-49d03c01f637",
"status": "queued"
}
}
Headers