Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/91051589-14d6-43be-b8da-576be60635df
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/91051589-14d6-43be-b8da-576be60635df" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI4NiIsImVtYWlsIjoiZW1haWwtMTk2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzk0MjYyMDh9.9CNcaE2xM2kAvDPSO-Qhl25MSZxVDwyH8blscrn-v8s" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "91051589-14d6-43be-b8da-576be60635df",
"created_at": "2015-08-06T00:36:48Z",
"url": "/v2/jobs/91051589-14d6-43be-b8da-576be60635df"
},
"entity": {
"guid": "91051589-14d6-43be-b8da-576be60635df",
"status": "queued"
}
}
Headers