Skip to main content
id
string
required
Unique identifier for the call (UUID).
objectType
string
required
Always "call".
from
string
required
The phone number the call was made from.
to
string
required
The phone number the call was made to.
callType
string
required
The direction or type of the call. One of "inbound", "outbound", or "web".
duration
number
Duration of the call in seconds.
summary
string
AI-generated summary of the call.
startedAt
string
ISO 8601 timestamp when the call started.
endedAt
string
ISO 8601 timestamp when the call ended.
prospectId
string
The UUID of the prospect associated with this call.
createdAt
string
required
ISO 8601 timestamp when the object was created.
updatedAt
string
required
ISO 8601 timestamp when the object was last updated.

Example

{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "objectType": "call",
  "from": "+14155551234",
  "to": "+33123456789",
  "callType": "outbound",
  "duration": 342,
  "summary": "Discussed Q2 pipeline and scheduled a follow-up demo.",
  "startedAt": "2024-03-15T14:30:00Z",
  "endedAt": "2024-03-15T14:35:42Z",
  "prospectId": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "createdAt": "2024-03-15T14:30:00Z",
  "updatedAt": "2024-03-15T14:35:42Z"
}