Skip to main content

Documentation Index

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

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

Custom post-call analysis fields are not populated for calls that were not connected or where no conversation took place. Always check whether the field exists before using it.
After a call is analyzed, access results through three methods:

Dashboard

Visual interface for quick review of all analyzed conversations.

Webhook

Real-time notifications when analysis completes.

API

Programmatic access to call analysis data.

Dashboard

Access results in the dashboard’s History tab. Your defined analysis categories appear in the Conversation Analysis column for quick per-call insights.

Webhook

The call_analyzed event fires when analysis is complete:
{
  "event": "call_analyzed",
  "call": {
    "call_id": "123",
    "call_analysis": {
      // analysis results
    }
  }
}
See Webhook Overview to set up webhooks.

Get Call API

Retrieve analysis programmatically using the Get Call API:
{
  "call_id": "123",
  "call_analysis": {
    // analysis results object
  }
}
See the API Reference for full response schema.