curl --request POST \
--url https://api.attention.tech/v2/createScorecardResult \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"scorecard_uuid": "sc-uuid-123",
"summary": "Excellent discovery process, identified 3 key pain points",
"conversation_uuid": "conv-uuid-789",
"items": [
{
"scorecard_item_uuid": "si-uuid-1",
"numeric_result": 95,
"description": "Outstanding listening skills"
},
{
"scorecard_item_uuid": "si-uuid-2",
"numeric_result": 85,
"description": "Good closing technique"
}
]
}
'