Patch IMSI IP Mapping

Update IMSI IP Mapping Configuration

Create a new IMSI IP Mapping. Provide the UE IP address corresponding to the IMSI. This IP will be utilized as the UE IP after attach.

PATCHhttps://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 new ImsiIpMapping addition

imsi-ip-mappingobject
Response

OK

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

Last updated