查询上级国标平台列表
更新时间:2022-02-17
接口描述
本接口用于查询上级国标平台列表列表。
请求(Request)
请求URI
GET /v1/upperPlatform?pageNo={pageNo}&pageSize={pageSize}&name={name}
参数名称 | 类型 | 是否必需 | 描述 |
---|---|---|---|
pageNo | Integer | 是 | 分页查询标识第几页 |
pageSize | Integer | 是 | 分页查询标识每页多少条数据 |
name | String | 否 | 平台名称, 只支持前缀模糊匹配 |
请求头域
除公共头域外,无其它特殊头域。
请求体
无。
响应(Response)
响应头域
除公共头域外,无其它特殊头域。
响应体
参数名称 | 类型 | 描述 |
---|---|---|
pageNo | Integer | 当前页数 |
pageSize | Integer | 当前页的大小 |
data | Array | 上级国标平台列表 |
+ name | String | 平台名称 |
+ upperPlatformId | Long | 上级平台ID |
+ sipId | String | 平台SIP ID |
+ sipRealm | String | 平台SIP域 |
+ sipIp | String | 平台SIP IP |
+ sipPort | String | 平台SIP port |
+ sipUser | String | 平台SIP用户名 |
+ sipPassword | String | 平台SIP密码 |
+ registerInterval | String | 平台注册间隔, 默认300秒 |
+ heartbeatInterval | String | 平台心跳间隔, 默认60秒 |
+ config | String | 平台配置 |
++ enabled | Boolean | 平台授权 |
++ enablePtz | Boolean | 平台授权PTZ控制 |
totalCount | Integer | 总个数 |
示例
请求示例
GET /v1/upperPlatform?pageNo=1&pageSize=2 HTTP/1.1
x-bce-date: 2020-03-25T09:28:13Z
host: evs.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2020-03-25T09:28:13Z/1800/content-type;hostx-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应示例
HTTP/1.1 200 OK
Transfer-Encoding: chunked
x-bce-request-id: 012b9747-f13a-4a2c-a488-02b221844dca
Cache-Control: no-cache
Server: BWS
Date: Tue, 24 Mar 202 013:34:07 GMT
Content-Type: application/json;charset=UTF-8
{
"pageNo": 1,
"pageSize": 2
"data": [
{
"upperPlatformId": 1000001,
"name": "北京市朝阳公安局",
"sipId": "42060000492000001874",
"sipIp": "119.121.12.13",
"sipPort": "5060",
"sipUser": "42060000492000001874",
"sipPassword": "hyqwng",
"config": {
"enabled": true,
"enablePtz": false
}
},
{
"upperPlatformId": 1000002,
"name": "北京市海淀公安局",
"sipId": "42060000492000001871",
"sipIp": "119.121.12.15",
"sipPort": "5060",
"sipUser": "42060000492000001871",
"sipPassword": "ytwtgo",
"config": {
"enabled": true,
"enablePtz": false
}
}
],
"totalCount": 5
}
错误码
参考公共错误码。