English
Retrieve the current status and result of a job by its ID
cURL
curl --request GET \ --url https://api-dex.chainstream.io/jobs/{id} \ --header 'Authorization: Bearer <token>'
{ "state": "completed", "result": { "success": true, "data": { "message": "Job completed successfully" } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Job identifier
"12345"
Job status retrieved successfully
Job state
"completed"
Job result
{ "success": true, "data": { "message": "Job completed successfully" }}
Was this page helpful?