Evaluation Groups
evaluation_groups
Methods
Create Evaluation Group -> { id, account_id, created_at, 8 more... }
post/v5/evaluation-groups
Create a new evaluation group
List Evaluation Groups -> CursorPage<{ id, account_id, created_at, 8 more... }>
get/v5/evaluation-groups
List all evaluation groups for the current account
query Parameters
ending_before: string
Optional
evaluation_id: string
Optional
Filter to groups containing this evaluation ID
include_deleted: boolean
Optional
limit: number
(maximum: 10000, minimum: 1, default: 100)Optional
name: string
Optional
sort_by: string
Optional
sort_order:
(default: "asc")Optional
"asc"
"desc"
starting_after: string
Optional
tags: Array<string>
Optional
Response fields
has_more: boolean
Whether there are more items left to be fetched.
items: Array<{ id, account_id, created_at, 8 more... }>
total: number
The total of items that match the query. This is greater than or equal to the number of items returned.
limit: number
(default: 100)Optional
The maximum number of items to return.
object: "list"
(default: "list")Optional
Request example
200Example
Get Evaluation Group -> { id, account_id, created_at, 8 more... }
get/v5/evaluation-groups/{group_id}
Get a single evaluation group by ID
Update Evaluation Group -> { id, account_id, created_at, 8 more... }
put/v5/evaluation-groups/{group_id}
Full update of evaluation group. All fields are replaced with provided values. Omitted optional fields are cleared.
Patch Evaluation Group -> { id, account_id, created_at, 8 more... }
patch/v5/evaluation-groups/{group_id}
Partial update of evaluation group attributes (name, description, tags, metadata). Members cannot be modified via PATCH.
Archive Evaluation Group -> { id, account_id, created_at, 8 more... }
delete/v5/evaluation-groups/{group_id}
Soft-delete an evaluation group and cascade to members, row identifiers, and charts