Retrieve Job that was successful
GET /v2/jobs/:guid
Fields
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the job.
|
|
|
|
status
|
The status of the job.
|
|
- failed
- finished
- queued
- running
|
|
Request
Headers
Route
GET /v2/jobs/6651fbfe-f424-4645-9eae-090e845c3c9d
cURL
curl "https://api.[your-domain.com]/v2/jobs/6651fbfe-f424-4645-9eae-090e845c3c9d" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQ0IiwiZW1haWwiOiJlbWFpbC0zN0Bzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDE3NDYyMzUyfQ.drRZGLE6oR9w3QCmybLJvJQmf0DY9W_aG_JjfK7ixIE" \
-H "Host: example.org" \
-H "Cookie: "
Response
Headers
Status
200 OK
Body
{
"metadata": {
"guid": "0",
"created_at": "1970-01-01T00:00:00+00:00",
"url": "/v2/jobs/0"
},
"entity": {
"guid": "0",
"status": "finished"
}
}