Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/1284b366-6506-42dc-aa25-d3c691791100
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/1284b366-6506-42dc-aa25-d3c691791100" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MCIsImVtYWlsIjoiZW1haWwtMTk3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTg4NTU2ODF9.peSZRMLGRfy4SVI8y4zV_jxBpQGXAIJZX3TpGe-zKGs" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "1284b366-6506-42dc-aa25-d3c691791100",
"created_at": "2016-03-17T21:41:21Z",
"url": "/v2/jobs/1284b366-6506-42dc-aa25-d3c691791100"
},
"entity": {
"guid": "1284b366-6506-42dc-aa25-d3c691791100",
"status": "queued"
}
}
Headers