GET
/
observability
/
v1
/
call-logs-external
/
curl --request GET \
  --url https://new-prod.vocera.ai/observability/v1/call-logs-external/ \
  --header 'X-VOCERA-API-KEY: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": 123,
      "duration": "<string>",
      "voice_recording_url": "<string>",
      "critical_categories": "<string>",
      "status": "success",
      "agent_id": "<string>",
      "assistant_id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "success": true,
      "is_reviewed": true,
      "feedback": "<string>",
      "evaluation": "<any>",
      "transcript": "<string>",
      "transcript_object": "<any>",
      "call_ended_reason": "<string>",
      "dropoff_point": "<string>",
      "topic": "<string>",
      "customer_number": "<string>",
      "user_generated_transcript": "<any>",
      "metadata": "<any>",
      "dynamic_variables": "<any>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "call_id": "<string>",
      "agent": 123
    }
  ]
}

Authorizations

X-VOCERA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Query Parameters

agent_id
integer

Filter by agent ID

assistant_id
string

Filter by assistant ID

Minimum length: 1
call_ids
string

Comma-separated list of call log IDs (e.g., 1,2,3)

Minimum length: 1
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

timestamp_from
string

Filter results from this timestamp (e.g. 2025-01-01T00:00:00Z)

timestamp_to
string

Filter results to this timestamp (e.g. 2025-01-31T23:59:59Z)

Response

200 - application/json

The response is of type object.