Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

5. Once the user decides which model to run for prediction. BI will compile all required data and call OBAIC.


Use POST instead of GET

Query should be in the body


Expand
titleAPI to infer from a model using provided dataset by reference


HTTP RequestValue
Method

GET

Header

Authorization: Bearer {token}

URL

{prefix}/models/{modelID}

Query Parameters

{

  "dbToken": "string";
  "action": "string",
  "data":{
      "sourceType":"string",
      "endpoint":"string",
      "bearerToken":"string",
      "query":"string"
  }
}

Example

{

  "dbToken": "D41C4A382C27A4B5DF824E2D4F148";
  "action": "infer",
  "data":{
      "sourceType":"snowflake",
      "endpoint":"some/endpoint",
      "bearerToken":"7CA4D3C152646DDEFB527A958C45B",
      "query":"SELECT foo FROM bar WHERE baz"
  }
}


...