Beast Modes are run time calculations on Cards or Datasets.Documentation Index
Fetch the complete documentation index at: https://domoinc-arun-raj-connectors-domo-480814-upadate-new-checkbo.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Get Statistics
Fetch instance-wide statistics on Beast Mode usage.Playground
GETEndpoint:
/api/query/v1/functions/statistics
Example
Response
Get All Beast Modes
Gets all Beast Mode objects in the instance.Playground
POSTEndpoint:
/api/query/v1/functions/search
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | String | No | To search for Beast Modes by name. |
filters | Array of objects | Yes | Filter criteria for the request. |
sort | Object | Yes | Object that takes the field to sort by and ascending as true or false |
limit | Integer | Yes | How many records to limit the request by. Must be between 1 and 5000. |
offset | Integer | No | Which record to start the response with. |
Example
Response
Get Beast Mode by Id
Gets a specified Beast Mode calculation.Playground
GETEndpoint:
api/query/v1/functions/template/<beastmodeId>
Path Parameters
| Property Name | Type | Required | Description |
|---|---|---|---|
| beastmodeId | Number | yes | ID of the BeastMode |
Example
Response
Update a Beast Mode
Update the formula that consitutes the calculation in the Beast Mode.Playground
PUTEndpoint:
/api/query/v1/functions/template/<beastmodeId>?strict=false
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
beastmodeId | Integer | Yes | The ID of the Beast Mode to update |
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
expression | String | Yes | The text formula to update |
Example
Response
Lock Beast Mode
Locks a Beast Mode so it cannot be altered.Playground
PUTEndpoint:
/api/query/v1/functions/template/<beastmodeId>
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
beastmodeId | Integer | Yes | The ID of the Beast Mode to lock |
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
locked | Boolean | Yes | true to lock Beast Mode. false to unlock it. |