Retrieve Job that is queued
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/053a71ab-10f8-4061-a5ca-0aee5ba96b1c
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/053a71ab-10f8-4061-a5ca-0aee5ba96b1c" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3MCIsImVtYWlsIjoiZW1haWwtMTMyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjczMjM5NjZ9.wCZhQ32noMxc74IVMzdN2-CCdsPvoEIHnlihkfpY2Uc" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "053a71ab-10f8-4061-a5ca-0aee5ba96b1c",
"created_at": "2015-03-18T22:52:46Z",
"url": "/v2/jobs/053a71ab-10f8-4061-a5ca-0aee5ba96b1c"
},
"entity": {
"guid": "053a71ab-10f8-4061-a5ca-0aee5ba96b1c",
"status": "queued"
}
}
Headers