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
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"
}
}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
}
}