GET
/
v1
/
sms
/
routing
/
rates
/
inboxes
/
messages
/
{message}
/
logs
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/routing/rates/inboxes/messages/{message}/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "sms_route_price_message_id": "<string>",
      "sms_route_price_message_file_id": "<string>",
      "line_no": 123,
      "event": "<string>",
      "fail_reason": "<string>",
      "meta": [
        "<any>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

message
string<uuid>
required

The message ID

Query Parameters

page
integer | null
per_page
integer | null
file_id
string<uuid>
search_ids
string<uuid>[]
type
enum<string>[]

Response

200
application/json

Array of SmsRoutePriceMessageLogResource

The response is of type object.