Skip to main content
GET
/
plugin
/
chart
/
{pluginInstallId}
/
dashboard
/
{positionId}
/
query
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/plugin/chart/{pluginInstallId}/dashboard/{positionId}/query \
  --header 'Authorization: Bearer <token>'
{
  "rows": [
    {}
  ],
  "columns": [
    {
      "name": "<string>",
      "column": "<string>",
      "type": "aggregation",
      "fieldSource": {
        "id": "<string>",
        "name": "Tags",
        "type": "singleSelect",
        "options": {
          "expression": "countall({values})",
          "timeZone": "<string>",
          "formatting": "<unknown>",
          "showAs": {
            "type": "url"
          }
        },
        "cellValueType": "string",
        "dbFieldType": "TEXT",
        "dbFieldName": "<string>",
        "description": "this is a summary",
        "meta": {
          "persistedAsGeneratedColumn": false
        },
        "aiConfig": {
          "modelKey": "<string>",
          "type": "extraction",
          "sourceFieldId": "<string>",
          "isAutoFill": true,
          "attachPrompt": "<string>"
        },
        "isLookup": true,
        "isConditionalLookup": true,
        "lookupOptions": {
          "relationship": "oneOne",
          "foreignTableId": "<string>",
          "lookupFieldId": "<string>",
          "fkHostTableName": "<string>",
          "selfKeyName": "<string>",
          "foreignKeyName": "<string>",
          "linkFieldId": "<string>",
          "baseId": "<string>",
          "filter": {}
        },
        "notNull": true,
        "unique": true,
        "isPrimary": true,
        "isComputed": true,
        "isPending": true,
        "hasError": true,
        "isMultipleCellValue": true,
        "recordRead": true,
        "recordCreate": true
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

pluginInstallId
string
required
positionId
string
required

Query Parameters

baseId
string
required
cellFormat
enum<string>
Available options:
json,
text

Response

200 - application/json

Returns data about the dashboard install plugin query.

rows
object[]
required
columns
object[]
required
Last modified on December 10, 2025