Adds a single item (scoring criterion) to the given scorecard. The new item is appended at the next position. Requires an org-scoped API key.
Parent scorecard UUID
Scorecard item creation payload
Payload for creating a single scorecard item.
Human-readable title of the item (1-128 characters, trimmed).
Scoring type for a scorecard item. Currently only numeric is supported.
numeric "numeric"
Relative weight of this item within the scorecard (0-100).
Optional position override. When omitted, the item is appended to the end of the scorecard.
Optional expert-mode prompt override (0-8000 characters).
Type-discriminated metadata for a scorecard item. Numeric items populate numericMetadata.
{
"numericMetadata": {
"min": 0,
"middle": 50,
"max": 100,
"minCriteria": "No discovery questions asked.",
"middleCriteria": "Some discovery questions asked.",
"maxCriteria": "Thorough discovery performed."
}
}Scorecard item successfully created
Single-resource envelope wrapping a ScorecardItem.
A single scoring criterion belonging to a scorecard template.
{
"id": "si-uuid-123",
"scorecardId": "sc-uuid-456",
"title": "Discovery Quality",
"type": "numeric",
"position": 0,
"weight": 25,
"version": 1,
"expertPrompt": "",
"metadata": {
"numericMetadata": {
"min": 0,
"middle": 50,
"max": 100,
"minCriteria": "No discovery questions asked.",
"middleCriteria": "Some discovery questions asked.",
"maxCriteria": "Thorough discovery performed."
}
},
"createdAt": "2026-04-16T10:15:00Z",
"lastUpdatedAt": "2026-04-16T10:15:00Z"
}