Retrieve Job with known failure
GET /v2/jobs/:guid
Request
Route
GET /v2/jobs/81649c7a-d193-4e7d-b5d7-b48690b31caa
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/81649c7a-d193-4e7d-b5d7-b48690b31caa" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQ1MyIsImVtYWlsIjoiZW1haWwtMzI1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTM4MzcyODd9.gRoYtU1p3toVeOg7WZ5Er-OavNNan4lfdbG-LYz7XbU" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "81649c7a-d193-4e7d-b5d7-b48690b31caa",
"created_at": "2016-01-19T19:41:27Z",
"url": "/v2/jobs/81649c7a-d193-4e7d-b5d7-b48690b31caa"
},
"entity": {
"guid": "81649c7a-d193-4e7d-b5d7-b48690b31caa",
"status": "failed",
"error": "Use of entity>error is deprecated in favor of entity>error_details.",
"error_details": {
"code": 1001,
"description": "Request invalid due to parse error: arbitrary string",
"error_code": "CF-MessageParseError"
}
}
}
Headers