Facebook
LinkedIn
YouTube
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
Dialer SDK
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
Dialer SDK
  1. Scorecards
  • Platform
    • Users
      • List Users
      • Create User
      • Get User Details
      • Update User
      • Partial Update User
      • Delete User
    • Groups
      • Get Group Tree
      • List Child Groups
      • Get Group Details
      • List Groups
      • Get Org Unit Hierarchy
      • Update Group
      • Partial Update Group
      • Delete Group
      • Create Group
    • Webhooks
      • Create Webhook
      • Get Webhook Details
      • List Webhooks
      • Update Webhook
      • Partial Update Webhook
      • Delete Webhook
    • Media Prompts
      • List Prompts
      • Get Prompt by ID
      • Upload Prompt
      • Delete Prompt
  • AI Voice Agents
    • List AI Voice Agents
      GET
    • Get Agent Details
      GET
    • Delete Agent
      DELETE
  • Phone Numbers
    • Assigned Numbers
      GET
    • Provisioned Numbers
      GET
    • Reserved Numbers
      DELETE
    • Phone Numbers
      POST
    • Available Numbers
      GET
  • Provisioned Routes
    • List Provisioned Routes
      GET
    • Create Provisioned Route
      POST
    • Get Provisioned Route Details
      GET
    • Delete Provisioned Route
      DELETE
    • Update Provisioned Route
      PUT
    • Partial Update Provisioned Route
      PATCH
  • SMS Broadcasts
    • List Broadcasts
      GET
    • Create Broadcast
      POST
    • Get Broadcast Details
      GET
    • Update Broadcast
      PUT
    • Partial Update Broadcast
      PATCH
    • Delete Broadcast
      DELETE
  • Conversation
    • Calls
      • Get Calls List
      • Get Call By ID
      • Email Call Data
      • Move Call to Another Group
      • Add Notes to Calls
      • Upload Call Recording
      • Add Tags to Call
    • SMS
      • Get SMS Conversations
      • Get SMS Conversation By ID
    • Opportunity Recovery
      • Get Conversations By Custom Insights
    • Agent Performance
      • Get Agent Performance Metrics
    • Attribution Engine
      • Get Marketing Attribution Data
  • Blacklist
    • List blacklisted numbers
    • Add numbers to blacklist
    • Delete numbers from blacklist
  • Call Action Templates
    • Create Call Action Template
    • Update Call Action Template
  • Campaigns
    • List Campaigns
    • Create Campaign
    • Get Campaign Details
    • Update Campaign
    • Partial Update Campaign
    • Delete Campaign
  • Custom Insights
    • Get Custom Insights
    • Create New Custom Insight
    • Get Custom Insight By Id
    • Update Custom Insight
    • Partial Update Custom Insight
    • Delete Custom Insight
  • Custom Source
    • Get Custom Sources
    • Create Custom Source
    • Delete Custom Sources (Single or Multiple)
  • DNI
    • List DNI Settings
    • Update DNI Setting
    • Delete DNI Setting
    • Create DNI Setting
  • Geo Locations
    • List Geo Locations
    • Create Geo Location
    • Get Geo Location
    • Update Geo Location
    • Partially Update Geo Location
    • Delete Geo Location
    • List Geo Location Routes
    • Create Geo Location Route
    • Get Geo Location Route
    • Update Geo Location Route
    • Partially Update Geo Location Route
    • Delete Geo Location Route
    • Import Geo Location Routes from CSV
  • Insights
    • List Insights
    • Create Insight
    • Get Insight Details
    • Delete Insight
  • Scorecards
    • List Scorecards
      GET
    • Get Scored Calls Report
      GET
    • Create Scorecard
      POST
    • Add or Update Call Title
      POST
    • Duplicate Scorecard
      POST
    • Archive Scorecard
      DELETE
  • Miscellaneous
    • List Ad Sources
    • List Industries
    • List Tags
    • Create Tag
    • Update Tag
    • Delete Tag
  • Subscriptions
    • List Webhook Subscriptions
    • Create Webhook Subscription
    • Delete Webhook Subscription
  1. Scorecards

Create Scorecard

POST
https://platform-api.convirza.com/v3/scorecards/create
Scorecards
Last modified:2026-07-24 13:10:44
Creates a new scorecard with specified configuration, sections, and indicators.
Required Fields
scorecard_title — Unique title within the billing account
scorecard_outcome_label — Label for the scorecard outcome (e.g., "Pass/Fail")
has_sections — Whether the scorecard uses sections
applied_to_groups — Array of org unit IDs that have access to this scorecard
org_unit_id — Org unit where the scorecard is created
indicator_list — Array of indicators with configurations
is_duplicate — Flag indicating if this is a duplicate (typically false for new scorecards)
Conditional Requirements
If ai_outcome = true, then outcome_indicator_id is required
If total_score_outcome = true, then total_score_threshold is required
If has_sections = true, then scorecard_sections array is required
If has_sections = true, each indicator must have a section_id (array index of the section)
Indicator Configuration
Each indicator in indicator_list must include:
indicator_id — ID of an existing active indicator
scorecard_indicator_title — Display title for this indicator
section_id — Index in scorecard_sections array (required if has_sections = true)
Optional: importance, is_required, allow_na, display_order, indicator_sign, help_text
Section Configuration
If has_sections = true, each section in scorecard_sections must include:
name — Section name
display_order — Display order
weight — Section importance/weight
Optional: hideIndicators or hide_indicators
Optional: Rescore Historical Calls
To rescore historical calls after scorecard creation:
rescoreCalls — Set to true to enable rescoring (default: false)
original_scorecard_id — ID of the scorecard being replaced (required if rescoreCalls = true)
rescoreRange — Object with start and end dates in YYYY-MM-DD format (required if rescoreCalls = true)
Rescore jobs are published to RabbitMQ queue for background processing
Only triggers if scorecard_status = "active" and rescoreCalls = true
Fire-and-forget operation — scorecard creation succeeds even if queue publish fails
Access Control
Requires Admin role
All applied_to_groups and default_groups org_unit_ids must belong to the user's billing account
Scorecard title must be unique within the billing account
Example Request
{
  "scorecard_title": "Sales Quality Scorecard",
  "scorecard_outcome_label": "Pass/Fail",
  "has_sections": true,
  "org_unit_id": 70035,
  "applied_to_groups": [70035, 70292],
  "default_groups": [70035],
  "is_duplicate": false,
  "ai_outcome": false,
  "total_score_outcome": false,
  "scorecard_sections": [
    {"name": "Quality Metrics", "display_order": 1, "weight": 5, "hideIndicators": false}
  ],
  "indicator_list": [
    {
      "indicator_id": 123,
      "scorecard_indicator_title": "Greeting Quality",
      "section_id": "0",
      "importance": 5,
      "is_required": false,
      "allow_na": false,
      "display_order": 1,
      "indicator_sign": "positive"
    }
  ]
}

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢201
application/json
Scorecard created successfully
Bodyapplication/json

🟠400
🟠401
🟠403
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location 'https://platform-api.convirza.com/v3/scorecards/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "scorecard_title": "Basic Quality Scorecard",
    "scorecard_outcome_label": "Pass/Fail",
    "has_sections": false,
    "org_unit_id": 70035,
    "applied_to_groups": [
        70035,
        70292
    ],
    "is_duplicate": false,
    "indicator_list": [
        {
            "indicator_id": 123,
            "scorecard_indicator_title": "Greeting Quality",
            "importance": 5,
            "is_required": false,
            "allow_na": false,
            "display_order": 1,
            "indicator_sign": "positive"
        }
    ]
}'
Response Response Example
201 - Example 1
{
    "code": 200,
    "message": "Success",
    "data": {
        "scorecard_id": 456
    },
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2026-01-20T12:34:56.789Z"
}
Modified at 2026-07-24 13:10:44
Previous
Get Scored Calls Report
Next
Add or Update Call Title
Built with