Get APN

Get APN Configuration

Returns APN configuration from the Edge. “apn name”, “ambr_ul” (Aggregate maximum bit rate for the uplink), “ambr_dl” (Aggregate maximum bit rate for the downlink), “mbr_ul” & “mbr_dl” (MBR is used for a GBR type bearer and indicates the maximum bit rate allowed in the LTE network), “dns_primary” (Primary IP for DNS), “dns_secondary” (Secondary IP for DNS), “mtu” (This is a maximum packet size limit during data traffic flow between UE and eNodeB) “urr_vol_th” (Default Volume threshold for Call Data Record for 4G) OR “urr_vol_th_5G” (Default Volume threshold for Call Data Record for 5G)

get

/v1/edge/{edgeIp}/apn

Authorizations
Path parameters
edgeIpstring · enumrequired

The IP address of the edge

Options: Monogoto Edge IP
Responses
curl -L \
  --url 'https://api.monogoto.io/api/v1/edge/{edgeIp}/apn' \
  --header 'Authorization: Bearer JWT'
{
  "apn_name": "data.mono",
  "ambr_ul": 1650000,
  "ambr_dl": 1650000,
  "mbr_ul": 1650000,
  "mbr_dl": 1650000,
  "dns_primary": "8.8.8.8",
  "dns_secondary": "4.4.4.4",
  "mtu": 1500,
  "urr_vol_th": 10240,
  "urr_vol_th_5G": 10240
}

Last updated

Was this helpful?