Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/cb9cf4a0-444d-4383-821f-b2e0988206f2
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/cb9cf4a0-444d-4383-821f-b2e0988206f2" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI3NCIsImVtYWlsIjoiZW1haWwtMjAyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzE2NDY2Mzl9.FelFjc_PE5mEsF1uHDVw2aOJFF72al5pDXpgF8Cps54" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "cb9cf4a0-444d-4383-821f-b2e0988206f2",
"created_at": "2015-05-07T23:37:19Z",
"url": "/v2/jobs/cb9cf4a0-444d-4383-821f-b2e0988206f2"
},
"entity": {
"guid": "cb9cf4a0-444d-4383-821f-b2e0988206f2",
"status": "queued"
}
}
Headers