RelayAPI

Poll for tool job result

Check the status of an async tool job (download or transcript). Returns processing, completed with result, or failed with error.

GET
/v1/tools/jobs/{job_id}
AuthorizationBearer <token>

API key (rlay_live_* or rlay_test_). Invite redemption also accepts a server-derived rlay_session_ bearer for a current user session.

In: header

Path Parameters

job_id*string

Job ID returned from a download or transcript request

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/tools/jobs/string"
{  "completed_at": "2019-08-24T14:15:22Z",  "created_at": "2019-08-24T14:15:22Z",  "error": "string",  "error_code": "string",  "job_id": "string",  "result": {    "property1": null,    "property2": null  },  "status": "processing",  "type": "download"}

Found something wrong? Help us improve this page.