GET
/
v1
/
sms
/
routing
/
networks
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/routing/networks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "mcc": 123,
      "mnc": 123,
      "country_name": "<string>",
      "country_code": "<string>",
      "country_id": 123,
      "network_brand_id": "<string>",
      "brand": "<string>",
      "operator": "<string>",
      "status": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

filter_country_id
integer
filter_network_brand_id
string<uuid>
show_empty_brand_values
boolean

Response

200
application/json

Array of MobileNetworkResource

The response is of type object.