Scorecard
Create Scorecard
Creates a new scorecard template in the caller's organization. Requires an org-scoped API key (admin-equivalent). The new scorecard has no items on creation — use POST /scorecards/{id}/items to add scoring criteria.
post/scorecards
Request body
Example request
{
"title": "Sales Discovery Scorecard",
"allTeams": true,
"enabled": true,
"interactionType": "conversation",
"detailedInstructions": "Evaluate discovery quality.",
"expertMode": false
}Response
Scorecard successfully created
Example response
{
"data": {
"id": "sc-uuid-123",
"title": "Sales Discovery Scorecard",
"organizationId": "org-uuid-456",
"allTeams": true,
"enabled": true,
"interactionType": "conversation",
"expertMode": false,
"isDefaultTemplate": false,
"createdAt": "2026-04-16T10:15:00Z"
}
}