Get APN
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)
Authorizations
Path parameters
edgeIpstring · enumRequiredPossible values:
The IP address of the edge
Responses
200
Configured APN
application/json
404
Resource Not Found
application/json
get
GET /api/v1/edge/{edgeIp}/apn HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
Accept: */*
{
"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?