Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/65204309-2f53-46ab-b9eb-bddadf85674b
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/65204309-2f53-46ab-b9eb-bddadf85674b" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MyIsImVtYWlsIjoiZW1haWwtMTk5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTE0MTM2OTF9.JqVQOGJbfKq4EXV8hOr_7XzfFZh05T3DG7Z0_9h2CUg" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "65204309-2f53-46ab-b9eb-bddadf85674b",
"created_at": "2015-12-22T18:28:11Z",
"url": "/v2/jobs/65204309-2f53-46ab-b9eb-bddadf85674b"
},
"entity": {
"guid": "65204309-2f53-46ab-b9eb-bddadf85674b",
"status": "queued"
}
}
Headers