Post PLMN

Create PLMN Configuration

post

Create a new PLMN in the Edge. Separate Plmns to be configured for 4G and 5G. For 5G plmn configuration TAC (Tracking Area Code) and RAT (Radio Access Technology) are mandatory.

Authorizations
Path parameters
edgeIpstring · enumRequired

The IP address of the edge

Possible values:
Body
plmnstringRequiredExample: USA_5G 315010
mccstring · min: 1 · max: 999RequiredExample: 315
mncstring · min: 1 · max: 999RequiredExample: 010
ratstringOptionalExample: 5G
tacstringOptionalExample: 000001
Responses
200
Successful Response
application/json
post
POST /api/v1/edge/{edgeIp}/plmns HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 303

"{\n  \"plmns\": [\n\n    {\n      \"plmn\": \"USA 315010\",\n      \"mcc\": \"315\",\n      \"mnc\": \"010\",\n      \"rat\": \"4G\"\n    },\n    {\n      \"plmn\": \"USA_5G 315010\",\n      \"mcc\": \"315\",\n      \"mnc\": \"010\",\n      \"rat\": \"5G\",\n      \"tac\": \"000001\"\n    }\n  ]\n}\n"
200

Successful Response

{
  "plmns": [
    {
      "plmn": "USA 315010",
      "mcc": "315",
      "mnc": "010",
      "rat": "4G"
    },
    {
      "plmn": "USA_5G 315010",
      "mcc": "315",
      "mnc": "010",
      "rat": "5G",
      "tac": "000001"
    }
  ]
}

Last updated

Was this helpful?