Skip to main content
GET
/
v5
/
evaluation-charts
List Evaluation Charts
curl --request GET \
  --url https://api.egp.scale.com/v5/evaluation-charts \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "title": "<string>",
      "type": "bar",
      "account_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "object": "evaluation_chart",
      "evaluation_id": "<string>",
      "evaluation_group_id": "<string>",
      "deleted_at": "2023-11-07T05:31:56Z",
      "columns": [
        {
          "id": "<string>",
          "column_name": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "account_id": "<string>",
          "object": "evaluation_chart.column",
          "evaluation_id": "<string>",
          "deleted_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
starting_after
string | null
ending_before
string | null
limit
integer
default:100
Required range: 1 <= x <= 1000
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.