Skip to main content

Documentation Index

Fetch the complete documentation index at: https://asisso-cd509912.mintlify.app/llms.txt

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

MethodEndpointQuick Link
POST/public/agent/{uuid}Trigger an outbound call
GET/workflow/{workflow_id}/runs/{run_id}Retrieve call details
GET/public/download/workflow/{token}/{artifact_type}Download recordings and transcripts
POST/telephony/inbound/{workflow_id}Inbound call webhook

Using initial context

initial_context passes runtime data into the agent at call time. Values are available as template variables in your agent’s prompt using double-brace syntax.
{
  "initial_context": {
    "customer_name": "Jane",
    "appointment_date": "March 15"
  }
}
Your agent prompt can then reference {{customer_name}} and {{appointment_date}} and they will be substituted when the call starts.

Run status values

StatusDescription
pendingCall queued but not yet connected
in_progressCall is live
completedCall ended normally
failedCall failed before or during execution