Skip to main content
GET
/
v1
/
agents
/
{agentId}
/
outbound-calls
curl "https://api.telzino.com/v1/agents/123e4567-e89b-12d3-a456-426614174000/outbound-calls?page=1&limit=25&status=completed" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "data": [
    {
      "id": "0fc6daf8-7251-4553-9488-867ba0b82d8e",
      "agent_id": "123e4567-e89b-12d3-a456-426614174000",
      "to_number": "+18135551234",
      "status": "completed",
      "request_metadata": { "crm_id": "123" },
      "transcript_id": "de79aee6-ae41-4003-a3f4-ba9d77b59bd8",
      "created_at": "2026-06-11T12:49:28.898751+00:00",
      "answered_at": "2026-06-11T12:50:03.843960+00:00",
      "ended_at": "2026-06-11T12:54:15.354244+00:00",
      "duration": 251,
      "error": null,
      "sip_status_code": null
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 25,
    "total": 1,
    "totalPages": 1,
    "hasNext": false,
    "hasPrev": false
  }
}

Path Parameters

agentId
string
required
The agent ID to list outbound calls for (UUID format)

Query Parameters

page
integer
default:"1"
Page number for pagination (1-indexed)
limit
integer
default:"50"
Number of items per page (max 100)
status
string
Filter by lifecycle status, e.g. completed, no_answer, failed

Response

data
array
Array of outbound call objects — same shape as Get Outbound Call, newest first
pagination
object
curl "https://api.telzino.com/v1/agents/123e4567-e89b-12d3-a456-426614174000/outbound-calls?page=1&limit=25&status=completed" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "data": [
    {
      "id": "0fc6daf8-7251-4553-9488-867ba0b82d8e",
      "agent_id": "123e4567-e89b-12d3-a456-426614174000",
      "to_number": "+18135551234",
      "status": "completed",
      "request_metadata": { "crm_id": "123" },
      "transcript_id": "de79aee6-ae41-4003-a3f4-ba9d77b59bd8",
      "created_at": "2026-06-11T12:49:28.898751+00:00",
      "answered_at": "2026-06-11T12:50:03.843960+00:00",
      "ended_at": "2026-06-11T12:54:15.354244+00:00",
      "duration": 251,
      "error": null,
      "sip_status_code": null
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 25,
    "total": 1,
    "totalPages": 1,
    "hasNext": false,
    "hasPrev": false
  }
}