/
Get job status by id
Show the status information of the given job id at last execution as well as other related information.
Security
ApiKeyAuth
- https://api.treasuredata.com/v3https://api.treasuredata.com/v3/job/status/{job_id}
- https://api.treasuredata.co.jp/v3https://api.treasuredata.co.jp/v3/job/status/{job_id}
- https://api.ap02.treasuredata.com/v3https://api.ap02.treasuredata.com/v3/job/status/{job_id}
- https://api.eu01.treasuredata.com/v3https://api.eu01.treasuredata.com/v3/job/status/{job_id}
curl -i -X GET \
https://api.treasuredata.com/v3/job/status/19 \
-H 'Authorization: TD1 <YOUR_TOKEN_HERE>'OK
Datetime in custom format (2020-12-31 11:22:33 -0500 or 2020-12-31 11:22:33 UTC for UTC)
Example:"2020-12-31 11:22:33 UTC"
One of:
Datetime in custom format (2020-12-31 11:22:33 -0500 or 2020-12-31 11:22:33 UTC for UTC)
string(DateTimeAsString)
the number of records in the result. Will be null until job has finished, and may not be set for all query types
Example:100
size in bytes of the job's result, in msgpack.gz format
Example:1048576
One of:
Datetime in custom format (2020-12-31 11:22:33 -0500 or 2020-12-31 11:22:33 UTC for UTC)
string(DateTimeAsString)
current status of the job
Enum:"queued""running""killed""success""error"
Example:"success"
Response
{ "job_id": "19", "cpu_time": 0, "created_at": "2020-12-31 11:22:33 UTC", "end_at": "2020-12-31 11:22:33 UTC", "duration": 10, "num_records": 100, "result_size": 1048576, "start_at": "2020-12-31 11:22:33 UTC", "status": "success", "updated_at": "2020-12-31 11:22:33 UTC" }