Last updated 2 months ago
Was this helpful?
Returns the APN IP Pool Mapping from the Edge, which associates APN with IP-Pool.
/v1/edge/{edgeIp}/apnippoolmapping
The IP address of the edge
Monogoto Edge IP
curl -L \ --url 'https://api.monogoto.io/api/v1/edge/{edgeIp}/apnippoolmapping' \ --header 'Authorization: Bearer JWT'
{ "apn-ip-pool-mapping": [ { "apn": "data.mono", "ip-pool": "192.168.100.0", "mask": "255.255.255.0", "rat": "4G" }, { "apn": "internet", "ip-pool": "192.168.100.128", "mask": "255.255.255.0", "rat": "4G" }, { "apn": "data.mono", "ip-pool": "192.168.101.0", "mask": "255.255.255.0", "rat": "5G" }, { "apn": "internet", "ip-pool": "192.168.101.128", "mask": "255.255.255.0", "rat": "5G" } ] }