Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/43107096-4c89-4872-a943-24a8ef110590
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/43107096-4c89-4872-a943-24a8ef110590" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTk5IiwiZW1haWwiOiJlbWFpbC03MEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI2MTg3NzQxfQ.J0xTcVBlgD5_3fRviZuv1OVccEKfJ1IwEweKSd15ELk" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "43107096-4c89-4872-a943-24a8ef110590",
"created_at": "2015-03-05T19:15:41Z",
"url": "/v2/jobs/43107096-4c89-4872-a943-24a8ef110590"
},
"entity": {
"guid": "43107096-4c89-4872-a943-24a8ef110590",
"status": "queued"
}
}
Headers