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

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

path Parameters
group_id: string
Response fields
id: string

Unique identifier of the evaluation group

account_id: string

Account that owns this evaluation group

created_at: string
(format: date-time)

When the group was created

name: string

Name of the evaluation group

tags: Array<string>

The tags associated with the entity

deleted_at: string
Optional
(format: date-time)

When the group was soft-deleted

description: string
Optional

Optional description

evaluation_group_metadata: Record<string, unknown>
Optional

Optional metadata key-value pairs

members: Array< | { id, created_at, evaluation_group_id, 3 more... }>
Optional

Evaluation members in this group. Populated with 'members' view. Currently returns membership records.

object: "evaluation_group"
Optional
(default: "evaluation_group")
row_identifiers: Array<{ column_name, evaluation_id, object }>
Optional

Row identifier mappings. Populated with 'row_identifiers' view.

Request example
200Example