1
0

fix: docs

This commit is contained in:
2023-11-20 17:22:01 +08:00
parent 378415ea72
commit 62b5603a61
6 changed files with 63 additions and 14 deletions

View File

@@ -1769,6 +1769,66 @@ Example:
}
```
### 10.6 N3IWF在线用户信息
#### 10.6.1 查询N3IWF在线用户信息
说明为了避免在线用户太多N3IWF可做限制如返回不超过100条
* Uri
```uri
/api/rest/ueManagement/v1/elementType/n3iwf/objectType/ueInfo?imsi={imsi}&msisdn={msisdn}&neId={neId}
```
* Relations
OMC -> IMS
* Params
* OMC-FE -> OMC-BE, neId={neId}, 指定IMS的neId
* OMC -> IMS, imsi={imsi} 可选如果都不指定则查询全部ueInfo
* Method
GET
* Body
NA
* Return
```json
// N3iwfUEInfo N3IWF在线用户信息
type N3iwfUEInfo struct {
IMSI string `json:"imsi"`
NAI string `json:"nai"`
RegState int `json:"regState"`
Activetime string `json:"activeTime"`
}
type N3iwfUEData struct {
Data []N3iwfUEInfo `json:"data"`
}
```
```json
{
"data": [
{
"imsi": "460000100000010",
"nai": "",
"regState": 1,
"activeTime": "2023-07-11 18:26:46"
},
{
"imsi": "460000100000011",
"nai": "",
"regState": 1,
"activeTime": "2023-07-11 18:26:46"
}
]
}
```
## 11 系统管理
### 11.1 OMC系统