Voice Call Detail

Get detailed information about a specific voice call.

GET /v1/conversations/voice/:id

Path Parameters

Parameter
Type
Description

id

string

The voice call ID (UUID)

Response

{
  "data": {
    "id": "990e8400-e29b-41d4-a716-446655440000",
    "from_number": "+45 12345678",
    "to_number": "+45 87654321",
    "started_at": "2026-03-10T10:30:00.000Z",
    "ended_at": "2026-03-10T10:35:00.000Z",
    "duration_seconds": 300,
    "status": "completed"
  }
}

Response Fields

Field
Type
Description

id

string

Voice call ID

from_number

string|null

Caller phone number

to_number

string|null

Destination phone number

started_at

string

Call start time

ended_at

string|null

Call end time

duration_seconds

integer|null

Call duration in seconds

status

string|null

Call status

Errors

Status
Error
Description

404

Voice call not found

ID doesn't exist or belongs to another company

Example

Last updated