Retrieve a log message
GET/external_connections/log_messages/:id
Retrieve a log message for an external connection associated with your account.
Request
Path Parameters
id int64required
Identifies the resource.
Responses
200: Successful response
- application/json
401: Unauthorized
404: Resource not found
Request samples
curl -L 'https://api.telnyx.com/v2/external_connections/log_messages/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"log_messages": [
{
"code": "10015",
"title": "Invalid attribute",
"detail": "The value provided for the attribute is not valid. Check the value used and try again.",
"source": {
"pointer": "/attribute"
},
"meta": {
"telephone_number": "+12345678",
"external_connection_id": "1293384261075731499",
"ticket_id": "542c3bca-d247-42bc-8fe7-e01d16ecd761"
}
}
]
}