Jobs

Returns the status of a specific job.

get
Path parameters
idstringRequired
Responses
200Success
application/json
get
GET /v1/bi/jobs/{id} HTTP/1.1
Host: 
Accept: */*
200Success
{
  "app": "text",
  "service": "text",
  "warnings": [
    {}
  ],
  "instanceId": "text",
  "requestId": "text",
  "data": {
    "job": {}
  }
}

Submits a new request to process a specific data model.

post
Body
Responses
200Success
application/json
post
POST /v1/bi/jobs HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 118

{
  "params": {
    "uid": "text",
    "organizationUid": "text",
    "parameters": [
      {
        "key": "text",
        "value": {}
      }
    ],
    "lang": 1,
    "template": "text"
  }
}
200Success
{
  "app": "text",
  "service": "text",
  "warnings": [
    {}
  ],
  "instanceId": "text",
  "requestId": "text",
  "data": {
    "jobId": "text"
  }
}

Was this helpful?