Fetches details of a specific job by its unique job_id
Security
BearerAuth
GET
curl -i -X GET \
'https://api.open-atlas.com/_mock/openapi/jobs/job/{job_id}' \
-H 'Authorization: Bearer <YOUR_JWT or vantage_live_ API key_HERE>'Job details retrieved successfully
A list of IDs of plots to be analyzed in the job
Example:
[ "ef6f5727-307f-4e9d-abcb-74a8b6af0366", "asd9632d-b589-4e05-9c8b-58fed1f9823a3" ]
Timestamp of job update, for example when the job's analysis is complete
Analysis data for the plot, represented as key-value pairs
Example:
{ "job_urgency": "high", "reviewer": "employee A" }
Amount of tokens the job costs based on the plots and the selected checks
Example:8
List of URLs for visualizations of analysis of plots associated with the job
Example:
[ "https://example.com/ef6f5727-307f-4e9d-abcb-74a8b6af0366.png", "https://example.com/asd9632d-b589-4e05-9c8b-58fed1f9823a3.png" ]
Response
- Point
- Polygon
- MultiPolygon
{ "username": "abc_pro", "notes": "This plot requires frequent irrigation.", "job_id": "a31da612-fefe-4da8-800d-0e7120f5617e", "job_name": "August shipment 827128", "plot_ids": [ "ef6f5727-307f-4e9d-abcb-74a8b6af0366", "asd9632d-b589-4e05-9c8b-58fed1f9823a3" ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "additional_info": { "job_urgency": "high", "reviewer": "employee A" }, "token_cost": 8, "harvest_date": "string", "status": "creating", "plots": [ { … } ], "job_visualization_url": [ "https://example.com/ef6f5727-307f-4e9d-abcb-74a8b6af0366.png", "https://example.com/asd9632d-b589-4e05-9c8b-58fed1f9823a3.png" ] }