Get Radio List
Returns Radio List Configuration from the Edge. The Radio List API provides information about connected Radios (eNodeB, gNodeB) and all radio-related parameters such as “ip”, “id”, “status”, “tac”, “enodebname”, “sessiontime”(Uptime), “supportedplmns”(PLMNs supported in Radio)
Authorizations
Path parameters
edgeIpstring · enumRequiredPossible values:
The IP address of the edge
Responses
200
Successful Response
application/json
get
GET /api/v1/edge/{edgeIp}/radiolist HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
Accept: */*
200
Successful Response
{
"radiolist": [
[
{
"ip": "192.168.100.20",
"id": "302",
"rat": "4G",
"status": "Active",
"tac": "1",
"enodebname": "Monogoto eNodeB",
"sessiontime": "8393934978",
"supportedplmns": [
{
"mccmnc": "315010"
}
]
},
{
"ip": "192.168.200.20",
"id": "14",
"rat": "5G",
"status": "Active",
"tac": "1",
"enodebname": "Monogoto gNodeB",
"sessiontime": "12345",
"supportedplmns": [
{
"mccmnc": "315010"
}
]
}
]
]
}
Last updated
Was this helpful?