Retrieve Job with unknown failure
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/6a803cb5-5c8a-4755-b818-4263c0a6cf7a
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/6a803cb5-5c8a-4755-b818-4263c0a6cf7a" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5NCIsImVtYWlsIjoiZW1haWwtMjAwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTE0MTM2OTF9.uZznk_GiRCvqvSV7vF8_Pl4Gd6VGx1qM5IomwPJ52Zc" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "6a803cb5-5c8a-4755-b818-4263c0a6cf7a",
"created_at": "2015-12-22T18:28:11Z",
"url": "/v2/jobs/6a803cb5-5c8a-4755-b818-4263c0a6cf7a"
},
"entity": {
"guid": "6a803cb5-5c8a-4755-b818-4263c0a6cf7a",
"status": "failed",
"error": "Use of entity>error is deprecated in favor of entity>error_details.",
"error_details": {
"error_code": "UnknownError",
"description": "An unknown error occurred.",
"code": 10001
}
}
}
Headers