Get PLMN

Get PLMNs Configuration

Returns PLMNs configuration from the Edge.

get

/v1/edge/{edgeIp}/plmns

Authorizations
Path parameters
edgeIpenumrequired

The IP address of the edge

Options: Monogoto Edge IP
Responses
curl -L \
  --url 'https://api.monogoto.io/api/v1/edge/{edgeIp}/plmns' \
  --header 'Authorization: Bearer JWT'
{
  "plmns": [
    {
      "plmn": "USA 315010",
      "mcc": "315",
      "mnc": "010",
      "rat": "4G"
    },
    {
      "plmn": "USA_5G 315010",
      "mcc": "315",
      "mnc": "010",
      "rat": "5G",
      "tac": "000001"
    }
  ]
}

Last updated

Was this helpful?