Skip to main content
Returns detailed information about a specific call belonging to the authenticated user.

Endpoint

GET /user/calls/{id}

Path parameters

id
integer
required
Unique identifier of the call.

Response

id
integer
Unique identifier of the call.
assistant_name
string
Name of the assistant that handled the call.
campaign_name
string
Name of the campaign the call belongs to, if applicable.
type
string
Call type: inbound, outbound, or web.
duration
integer
Call duration in seconds.
assistant_phone_number
string
Phone number used by the assistant.
client_phone_number
string
Phone number of the client.
status
string
Final status of the call.
transcript
string
Full transcript of the conversation.
variables
object
Variables collected during the call.
evaluation
object
Post-call evaluation data.
webhook_response
object
Response from configured webhooks.
carrier_cost
number
Carrier cost for the call in USD.
total_cost
number
Total cost of the call in USD.
answered_by
string
Who answered: human, machine, or unknown.
recording_url
string
URL to the call recording, if available and enabled.
created_at
string
Timestamp when the call was created.
updated_at
string
Timestamp when the call was last updated.

Example

curl -X GET "https://portal.intellixent.ai/api/user/calls/123" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Response
{
  "id": 123,
  "assistant_name": "Sales Assistant",
  "campaign_name": "Q4 Outreach Campaign",
  "type": "outbound",
  "duration": 245,
  "assistant_phone_number": "+1234567890",
  "client_phone_number": "+1987654321",
  "status": "completed",
  "transcript": "Hello, this is Sarah from Intellixent. How are you doing today?...",
  "variables": {
    "customer_name": "John Smith",
    "interest_level": "high",
    "follow_up_date": "2025-08-15"
  },
  "evaluation": {
    "sentiment": "positive",
    "outcome": "qualified_lead",
    "score": 8.5
  },
  "webhook_response": {
    "status": "success",
    "data": {
      "crm_contact_id": "abc123"
    }
  },
  "carrier_cost": 0.02,
  "total_cost": 0.025,
  "answered_by": "human",
  "recording_url": "https://portal.intellixent.ai/recordings/calls/123.mp3",
  "created_at": "2025-08-04 14:30:00",
  "updated_at": "2025-08-04 14:34:05"
}
404 Not found
{
  "message": "Call not found"
}