Skip to main content
GET
/
v5
/
rubrics
/
{rubric_id}
/
criteria
/
{rubric_criteria_id}
/
versions
List Criterion Versions
curl --request GET \
  --url https://api.egp.scale.com/v5/rubrics/{rubric_id}/criteria/{rubric_criteria_id}/versions \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "rubric_id": "<string>",
      "version": 123,
      "title": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "object": "rubric_criteria",
      "weight": 123,
      "annotations": {}
    }
  ],
  "total": 123,
  "has_more": true,
  "object": "list",
  "limit": 100
}

Authorizations

x-api-key
string
header
required

Headers

x-selected-account-id
string | null

Path Parameters

rubric_id
string
required
rubric_criteria_id
string
required

Query Parameters

starting_after
string | null
cursor
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.