Delete IMSI IP Mapping

Delete IMSI IP Mapping Configuration

Delete specific IMSI IP Mapping.

DELETEhttps://api.monogoto.io/api/v1/edge/{edgeIp}/imsiipmapping
Authorization
Path parameters
edgeIp*enum

The IP address of the edge

Monogoto Edge IP
Body

Schema for delete ImsiIpMapping

imsi-ip-mappingobject
Response

OK

Body
string
Example: "IMSI-IP Mapping in 4G Core got deleted successfully. IMSI-IP Mapping in 5G Core got deleted successfully"
Request
const response = await fetch('https://api.monogoto.io/api/v1/edge/{edgeIp}/imsiipmapping', {
    method: 'DELETE',
    headers: {
      "Authorization": "Bearer JWT",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
IMSI-IP Mapping in 4G Core got deleted successfully. IMSI-IP Mapping in 5G Core got deleted successfully

Last updated