Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/fb55a49a-7ae4-4acf-a790-5d154c3444e8
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/fb55a49a-7ae4-4acf-a790-5d154c3444e8" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3NiIsImVtYWlsIjoiZW1haWwtMTI3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjU5NDg2NjZ9.YAeY2sY9DHyFky3SobxH4gmtyWmSESWKcRcQ-SIFgAU" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "fb55a49a-7ae4-4acf-a790-5d154c3444e8",
"created_at": "2015-03-03T00:51:06Z",
"url": "/v2/jobs/fb55a49a-7ae4-4acf-a790-5d154c3444e8"
},
"entity": {
"guid": "fb55a49a-7ae4-4acf-a790-5d154c3444e8",
"status": "queued"
}
}
Headers