> ## Documentation Index
> Fetch the complete documentation index at: https://docs.altahq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Call

> A call object representing a phone call in your account.

<ParamField path="id" type="string" required>
  Unique identifier for the call (UUID).
</ParamField>

<ParamField path="objectType" type="string" required>
  Always `"call"`.
</ParamField>

<ParamField path="from" type="string" required>
  The phone number the call was made from.
</ParamField>

<ParamField path="to" type="string" required>
  The phone number the call was made to.
</ParamField>

<ParamField path="callType" type="string" required>
  The direction or type of the call. One of `"inbound"`, `"outbound"`, or `"web"`.
</ParamField>

<ParamField path="duration" type="number">
  Duration of the call in seconds.
</ParamField>

<ParamField path="summary" type="string">
  AI-generated summary of the call.
</ParamField>

<ParamField path="startedAt" type="string">
  ISO 8601 timestamp when the call started.
</ParamField>

<ParamField path="endedAt" type="string">
  ISO 8601 timestamp when the call ended.
</ParamField>

<ParamField path="prospectId" type="string">
  The UUID of the prospect associated with this call.
</ParamField>

<ParamField path="createdAt" type="string" required>
  ISO 8601 timestamp when the object was created.
</ParamField>

<ParamField path="updatedAt" type="string" required>
  ISO 8601 timestamp when the object was last updated.
</ParamField>

## Example

```json theme={null}
{
  "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"
}
```
