GET
/
v1
/
sms
/
routing
/
rates
/
operators
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/routing/rates/operators \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "country_id": 123,
      "network_brand_id": "<string>",
      "sms_route_id": "<string>",
      "max_rate": 123,
      "min_rate": 123,
      "networks": "<string>"
    }
  ],
  "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
sms_route_ids
string[]
company_ids
string[]
search_ids
string<uuid>[]
country_ids
number[]
network_brand_ids
string<uuid>[]

Response

200
application/json

Paginated set of SmsRoutingRateOperatorResource

The response is of type object.