Skip to main content
GET
/
v5
/
evaluation-dashboards
List Evaluation Dashboards
curl --request GET \
  --url https://api.egp.scale.com/v5/evaluation-dashboards \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "created_by": {
        "id": "<string>",
        "type": "user",
        "object": "identity"
      },
      "tags": [
        "<string>"
      ],
      "name": "<string>",
      "account_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "object": "evaluation_dashboard",
      "description": "<string>",
      "evaluation_id": "<string>",
      "evaluation_group_id": "<string>",
      "widget_order": [
        "<string>"
      ],
      "error_message": "<string>",
      "archived_at": "2023-11-07T05:31:56Z",
      "widgets": [
        {
          "id": "<string>",
          "title": "<string>",
          "type": "bar",
          "account_id": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "object": "evaluation_dashboard_widget",
          "query": {
            "select": [
              {
                "expression": {
                  "column": "<string>",
                  "type": "COLUMN"
                },
                "alias": "<string>"
              }
            ],
            "filter": {
              "conditions": [
                {
                  "column": "<string>",
                  "operator": "=",
                  "value": "<unknown>"
                }
              ],
              "logicalOperators": [
                "AND"
              ]
            },
            "groupBy": [
              "<string>"
            ],
            "orderBy": [
              {
                "column": "<string>",
                "direction": "ASC"
              }
            ],
            "limit": 2
          },
          "config": {},
          "archived_at": "2023-11-07T05:31:56Z"
        }
      ],
      "widget_results": [
        {
          "id": "<string>",
          "widget_id": "<string>",
          "computation_status": "pending",
          "account_id": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "object": "evaluation_dashboard_widget_result",
          "evaluation_id": "<string>",
          "evaluation_group_id": "<string>",
          "computed_result": {},
          "error_message": "<string>",
          "computation_job_id": "<string>",
          "computed_at": "2023-11-07T05:31:56Z",
          "widget": {
            "id": "<string>",
            "title": "<string>",
            "type": "bar",
            "account_id": "<string>",
            "created_at": "2023-11-07T05:31:56Z",
            "object": "evaluation_dashboard_widget",
            "query": {
              "select": [
                {
                  "expression": {
                    "column": "<string>",
                    "type": "COLUMN"
                  },
                  "alias": "<string>"
                }
              ],
              "filter": {
                "conditions": [
                  {
                    "column": "<string>",
                    "operator": "=",
                    "value": "<unknown>"
                  }
                ],
                "logicalOperators": [
                  "AND"
                ]
              },
              "groupBy": [
                "<string>"
              ],
              "orderBy": [
                {
                  "column": "<string>",
                  "direction": "ASC"
                }
              ],
              "limit": 2
            },
            "config": {},
            "archived_at": "2023-11-07T05:31:56Z"
          }
        }
      ]
    }
  ],
  "total": 123,
  "has_more": true,
  "object": "list",
  "limit": 100
}

Authorizations

x-api-key
string
header
required

Headers

x-selected-account-id
string | null

Query Parameters

evaluation_id
string | null
evaluation_group_id
string | null
tags
string[] | null

Filter by tags (case-insensitive)

include_archived
boolean
default:false
starting_after
string | null
ending_before
string | null
limit
integer
default:100
Required range: 1 <= x <= 10000
sort_by
string | null
sort_order
enum<string> | null
default:asc
Available options:
asc,
desc

Response

Successful Response

items
Items · object[]
required
total
integer
required

The total of items that match the query. This is greater than or equal to the number of items returned.

has_more
boolean
required

Whether there are more items left to be fetched.

object
string
default:list
Allowed value: "list"
limit
integer
default:100

The maximum number of items to return.