v53

OpenAPI 3.1.0raw.githubusercontent.com2026-08-041,1941,9384.1 MB
External Connections

List all log messages

Retrieve a list of log messages for all external connections associated with your account.

get/external_connections/log_messages

Query parameters

external_connection_idstring

The external connection ID to filter by or "null" to filter for logs without an external connection ID

Filter parameter for log messages (deepObject style). Supports filtering by external_connection_id and telephone_number with eq/contains operations.

{
  "external_connection_id": "67ea7693-9cd5-4a68-8c76-abb3aa5bf5d2",
  "telephone_number": {
    "contains": "+123",
    "eq": "+1234567890"
  }
}
numberinteger

The page number to load

sizeinteger

The size of the page

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Successful response

Example response

{
  "log_messages": [
    {
      "code": "10015",
      "detail": "The value provided for the attribute is not valid. Check the value used and try again.",
      "meta": {
        "external_connection_id": "1293384261075731499",
        "telephone_number": "+12345678",
        "ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761"
      },
      "source": {
        "pointer": "/attribute"
      },
      "title": "Invalid attribute"
    }
  ],
  "meta": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}