Create Evaluation Group
Create a new evaluation group bundling one or more existing evaluations.
The request must list at least one evaluation ID, and duplicate IDs are rejected. Every listed evaluation is validated for existence and account access before the group is created; an unknown or inaccessible evaluation ID fails the whole request with a 400 rather than creating a partial group. The named evaluations are added as group members in the same transaction, and any supplied row_identifiers (an evaluation_id-to-column-name mapping used for cross-dataset joins) are persisted alongside them, ignoring entries for evaluation IDs not in the group. The returned group includes its members enriched with each evaluation’s name, tags, and creation time. Unlike the PUT and PATCH update endpoints, creation does not trigger any dashboard-widget recomputation.
Authorizations
Headers
Body
Request model for creating an evaluation group
Name of the evaluation group
128List of evaluation IDs to include in the group
1The tags associated with the entity
Optional description
Optional metadata key-value pairs
{ "project": "Q4-2025", "team": "ml-eval" }Optional mapping of evaluation_id to column name for cross-dataset joins
{
"eval-123": "user_id",
"eval-456": "customer_id"
}Response
Successful Response
Response model for evaluation group
Unique identifier of the evaluation group
The tags associated with the entity
Name of the evaluation group
When the group was created
Account that owns this evaluation group
"evaluation_group"Optional description
Optional metadata key-value pairs
When the group was soft-deleted
Evaluation members in this group. Populated with 'members' view.
Row identifier mappings. Populated with 'row_identifiers' view.

