Get Subscriber Information
Returns information about attached subscribers from the Edge. Subscriber connected to 4G or 5G can be differentiated by RAT (Radio Access Technology) parameter.
Authorizations
Path parameters
edgeIpstring · enumRequiredPossible values:
The IP address of the edge
Responses
200
Retrieved Subscriber Information successfully
application/json
get
GET /api/v1/edge/{edgeIp}/subscriberinfo HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
Accept: */*
200
Retrieved Subscriber Information successfully
{
"subscriberlist": [
{
"ip": [
"192.168.100.1"
],
"ipallocationmethod": "dynamic",
"imsi": "315010006700021",
"imei": "865509051690661",
"apn": [
"data.mono"
],
"plmn": "315010",
"tac": 1,
"sessiontime": [
"4223"
],
"enodebid": "302",
"enodebaddress": "192.168.100.25",
"enodebname": "Monogoto eNodeB",
"rat": "4G"
},
{
"ip": [
"192.168.101.3",
"192.168.102.3"
],
"ipallocationmethod": "static",
"imsi": "315010006700022",
"imei": "866104050013476",
"apn": [
"data.mono",
"default.data.mono"
],
"plmn": "315010",
"tac": 1,
"sessiontime": [
"12345",
"2345"
],
"enodebid": "14",
"enodebaddress": "192.168.200.25",
"enodebname": "Monogoto gNodeB",
"rat": "5G"
}
]
}
Last updated
Was this helpful?