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_*)

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://api.relayapi.dev/v1/tools/jobs/string"
{
  "job_id": "string",
  "status": "processing",
  "type": "download",
  "created_at": "2019-08-24T14:15:22Z",
  "completed_at": "2019-08-24T14:15:22Z",
  "result": {
    "property1": null,
    "property2": null
  },
  "error": "string",
  "error_code": "string"
}
{
  "error": {
    "code": "string",
    "message": "string",
    "details": {
      "property1": null,
      "property2": null
    }
  }
}

Found something wrong? Help us improve this page.

Submit an Issue
Requires a GitHub account.View repo