Poll Run Transforms

GET /v1/transforms/run?jobId=${jobId}

Poll to retrieve the transforms

Request

Headers

An API Key is required to access this endpoint.

NameValue

x-api-key

your_api_key

Polling response

The API returns the response in JSON format.

The request will return a 200 with the jobId, result and status. The result also includes the request parameters used to generate the transforms.

Example

{
  "jobId": "093ae7d8-1668-4c76-9f31-772c50bcb172",
  "result": {
    "chapters": [
      {
        "summary": "Regional Weather Highlights",
        "start": 250,
        "end": 2840
      },
      {
        "summary": "Forecast for the Day Ahead",
        "start": 2910,
        "end": 3340
      },
    ],
    "summary": "Out west, some mountainous regions are experiencing snowfall..."
  },
  "status": "COMPLETE"
}

Last updated