Skip to main content
POST
/
createScorecardResult
Create Scorecard Result
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"
    }
  ]
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.attention.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Body

Scorecard result creation request containing the conversation UUID, scorecard UUID, and scorecard result details

scorecard_uuid
string
required
summary
string
required
items
object[]
required
conversation_uuid
string
chat_uuid
string

Response

Scorecard result successfully created

success
boolean
required