GET
/
v1
/
sms
/
routing
/
rates
/
inboxes
/
messages
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/routing/rates/inboxes/messages \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "sms_route_id": "<string>",
      "route_name": "<string>",
      "company": "<string>",
      "stats": "<string>",
      "errors": [
        "<string>"
      ],
      "info": [
        "<string>"
      ],
      "mail": {
        "subject": "<string>",
        "from": [
          {
            "full": "<string>",
            "host": "<string>",
            "mail": "<string>",
            "mailbox": "<string>",
            "personal": "<string>"
          }
        ],
        "to": [
          {
            "full": "<string>",
            "host": "<string>",
            "mail": "<string>",
            "mailbox": "<string>",
            "personal": "<string>"
          }
        ],
        "cc": [
          {
            "full": "<string>",
            "host": "<string>",
            "mail": "<string>",
            "mailbox": "<string>",
            "personal": "<string>"
          }
        ],
        "bcc": [
          {
            "full": "<string>",
            "host": "<string>",
            "mail": "<string>",
            "mailbox": "<string>",
            "personal": "<string>"
          }
        ],
        "date": "<string>",
        "message_id": "<string>",
        "attachments": [
          {
            "name": "<string>",
            "content_type": "<string>",
            "size": 123
          }
        ]
      },
      "state": "<string>",
      "files": [
        {
          "id": "<string>",
          "sms_route_id": "<string>",
          "sms_route_price_message_id": "<string>",
          "file_name": "<string>",
          "stats": "<string>",
          "info": "<string>",
          "created_at": "2023-11-07T05:31:56Z"
        }
      ],
      "settings": {
        "columns": "<string>",
        "extra_settings": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 123,
    "to": 123,
    "total": 123
  },
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

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

Response

200
application/json

Paginated set of SmsRoutePriceMessageResource

The response is of type object.