Rubrics

rubrics

Methods

Create Rubric ->
post/v5/rubrics

Create Rubric

List Rubrics -> CursorPage<>
get/v5/rubrics

List Rubrics

Get Rubric ->
get/v5/rubrics/{rubric_id}

Get Rubric

Update Or Restore Rubric ->
patch/v5/rubrics/{rubric_id}

Update or Restore Rubric

Archive Rubric -> { id, deleted, object }
delete/v5/rubrics/{rubric_id}

Archive Rubric

Domain types

RestoreRequest = { restore }
RubricArchiveResponse = { id, deleted, object }
RubricResponse = { id, created_at, created_by, 7 more... }
Rubrics

Criteria

rubrics.criteria

Methods

Add Criterion To Rubric ->
post/v5/rubrics/{rubric_id}/criteria

Add Criterion to Rubric

Update Criterion ->
patch/v5/rubrics/{rubric_id}/criteria/{rubric_criteria_id}

Update Criterion

List Criterion Versions -> { has_more, items, total, 2 more... }
get/v5/rubrics/{rubric_id}/criteria/{rubric_criteria_id}/versions

List Criterion Versions

path Parameters
rubric_id: string
rubric_criteria_id: string
query Parameters
ending_before: string
Optional
limit: number
Optional
(maximum: 10000, minimum: 1, default: 100)
sort_by: string
Optional
sort_order:
Optional
starting_after: string
Optional
Response fields
has_more: boolean

Whether there are more items left to be fetched.

items: Array<>
total: number

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

limit: number
Optional
(default: 100)

The maximum number of items to return.

object: "list"
Optional
(default: "list")
Request example
200Example

Domain types

CriterionListVersionsResponse = { has_more, items, total, 2 more... }
RubricCriteriaInput = { title, annotations, weight }
RubricCriteriaResponse = { id, created_at, rubric_id, 5 more... }
RubricCriteriaSummaryResponse = { title, weight }

Slim criteria projection for list endpoints (title + weight only).