Skip to main content
POST
/
pypi_support
/
twilio_call_analysis
cURL
curl --request POST \\
  --url https://voip-middlware.superu.ai/pypi_support/twilio_call_analysis \\
  --header 'superU-Api-Key: YOUR_SUPERU_API_KEY' \\
  --data '{
  "call_uuid": "aa39db9f-d9f5-45f4-b4fc-9fe49f14f9ed",
  "custom_fields": [
    {
      "field": "intent",
      "definition": "Primary intent of the caller",
      "outputs_options": [
        "sales",
        "support",
        "other"
      ]
    }
  ]
}'
{
  "status": "success",
  "summary": "Caller asked about pricing and requested a callback.",
  "custom_fields": {
    "intent": "sales"
  }
}

Authorizations

superU-Api-Key
string
header
required

Your SuperU API key.

Body

application/json

Request body for Analyze Twilio call.

Twilio Call Analysis Request schema.

call_uuid
string
required

Call UUID

Example:

"aa39db9f-d9f5-45f4-b4fc-9fe49f14f9ed"

custom_fields
object[]

Optional custom extraction fields

Response

Call analysis generated

Generic Response schema.

status
string

Status value.

Example:

"success"

message
string

Message value.

Example:

"Request completed successfully"

data
object

Data value.