Patch IMSI IP Mapping

Update IMSI IP Mapping Configuration

patch

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.

Authorizations
Path parameters
edgeIpstring · enumRequired

The IP address of the edge

Possible values:
Body
Responses
200
OK
text/plain
ResponsestringExample: IMSI-IP Mapping in 4G Core got inserted successfully. IMSI-IP Mapping in 5G Core got inserted successfully
patch
PATCH /api/v1/edge/{edgeIp}/imsiipmapping HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 143

{
  "imsi-ip-mapping": [
    {
      "imsi": "315010726282648",
      "ip": "192.168.100.100",
      "rat": "4G"
    },
    {
      "imsi": "315010006700037",
      "ip": "192.168.101.200",
      "rat": "5G"
    }
  ]
}
200

OK

IMSI-IP Mapping in 4G Core got inserted successfully. IMSI-IP Mapping in 5G Core got inserted successfully

Last updated

Was this helpful?