接口功能介绍
安全引流带宽查询
接口约束
输入参数名称类长度不超过64位,描述类长度不超过128位
pageNo和pageSize从1开始,不能小于1
URI
GET /v4/sdwan/edge-safty-flow-bandwidth/list
路径参数
无
Query参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
pageNo | 否 | Integer | 页码 | 1 | |
pageSize | 否 | Integer | 每页记录数目 | 10 |
请求参数
请求header参数
无
请求body参数
无
响应参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
statusCode | 否 | Integer | 返回状态码('800为成功,900为失败),默认值:800 | 800 | |
errorCode | 否 | String | 业务细分码,为product.module.code三段式码 | ||
message | 否 | String | 失败时的错误描述,一般为英文描述 | ||
description | 否 | String | 失败时的错误描述,一般为中文描述 | ||
returnObj | 否 | Object | 返回参数 | returnObj |
表returnObj
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
totalCount | 否 | Integer | 总数 | 1 | |
currentCount | 否 | Integer | 当前页数量 | 1 | |
result | 否 | Array of Objects | 列表 | result |
表result
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
instanceID | 否 | String | 实例id | be012e8f-ea32-4a2c-89da-7db35eedb334 | |
否 | String | 账号邮箱 | test11@chinatelecom.cn | ||
customerID | 否 | String | 用户ID | 1f543c5e-5a7b-11ed-837f-005056893e3e | |
bandwidth | 否 | Integer | 带宽 | 1000 | |
startTime | 否 | String | 起始时间 | 2022-10-20 06:42:17 | |
expireTime | 否 | String | 到期时间 | 2022-10-20 06:42:17 |
请求示例
请求url
/v4/sdwan/edge-safty-flow-bandwidth/list?pageNo=1
请求头header
无
请求体body
无
响应示例
{
"statusCode": 800,
"returnObj": {
"totalCount": 1,
"currentCount": 1,
"result": [
{
"instanceID": "be012e8f-ea32-4a2c-89da-7db35eedb334",
"email": "test11@chinatelecom.cn",
"customerID": "1f543c5e-5a7b-11ed-837f-005056893e3e",
"bandwidth": 1000,
"startTime": "2022-10-20 06:42:17",
"expireTime": "2022-10-20 06:42:17"
}
]
},
"errorCode": "",
"message": "",
"description": ""
}
状态码
状态码 | 含义 |
---|---|
200 | 请求成功 |
错误码
errorCode | 含义 |
---|---|
Openapi.PatternCheck.NotValid | 请求参数无效 |