v1

latestOpenAPI 3.1.02026-07-22152755.8 KB
dashboards

List dashboard widgets

get/dashboards/widgets/

Query parameters

pageinteger

A page number within the paginated result set.

page_sizeinteger

Number of results to return per page.

dashboard_idinteger

Tenant scope. Supply one of dashboard_id when authenticating with a user session or OAuth bearer token; omit when using an API key already scoped to the tenant.

Response

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "https://api.cekura.ai/example/v1/example-external/?page=4",
  "previous": "https://api.cekura.ai/example/v1/example-external/?page=3",
  "results": [
    {
      "filters": {
        "field": "success",
        "op": "eq",
        "value": true
      },
      "effective_filters": {
        "field": "success",
        "op": "eq",
        "value": true
      },
      "field": "duration"
    }
  ]
}