GET
/
v1
/
voice
/
agents
/
classifiers
/
{classifier}
/
logs
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/voice/agents/classifiers/{classifier}/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "team_id": "<string>",
      "call_id": "<string>",
      "call_outcome_classifier_id": "<string>",
      "call_outcome_classifier_run_id": "<string>",
      "initial_call_outcome": "<string>",
      "new_call_outcome": "<string>",
      "status": "<string>",
      "failure_reason": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

classifier
string<uuid>
required

The classifier ID

Query Parameters

page
integer | null
per_page
integer | null
status
enum<string>
Available options:
pending,
in_progress,
completed,
failed,
skipped,
cancelled
search_ids
string<uuid>[]

Response

200
application/json

Array of CallOutcomeClassifierLogResource

The response is of type object.