GET
https://{BaseURL}
/
api
/
public
/
datamodels
/
{id}
/
execute
curl --request GET \
  --url https://{BaseURL}/api/public/datamodels/{id}/execute \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<task id>",
    "model_id": "<model id>",
    "version": "<version>",
    "container_status": "<task status PENDING|RUNNING|STOPPED>",
    "run_code": "<run code 200 | 300 | 500>",
    "records_retrieved": "<records_retrieved>",
    "error description": "<error description>"
  }
}

Trigger a model to update programmatically.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

201 - application/json

Created

The response is of type object.