一次性拨测
拨测点信息:查询
接口功能介绍
调用此接口可查询拨测点信息。
接口约束
无。
URI
GET /v4/monitor/query-detection-point
路径参数
无
Query参数
无
请求参数
请求头header参数
无
请求体body参数
无
响应参数
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 返回状态码(800为成功,900为失败),默认值:800 | 800 | |
errorCode | String | 失败时的错误代码,参见公共错误码说明 | ||
message | String | 失败时的错误描述,一般为英文描述 | Success | |
msgDesc | String | 失败时的错误描述,一般为中文描述 | 成功 | |
error | String | 错误码,请求成功时,不返回该字段 | Openapi.Parameter.Error | |
returnObj | Object | 返回参数 | returnObj |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
detectionPointList | Array of Objects | 拨测点列表 | detectionPoint |
表 detectionPoint
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
pointID | String | 拨测点ID | 728662dd11ec810800155d307d52 | |
name | String | 拨测点名称 | north_China | |
description | String | 拨测点描述 | 华北 | |
status | Boolean | 当前是否可用 | true |
请求示例
请求url
/v4/monitor/query-detection-point
请求头header
无
请求体body
无
响应示例
{
"statusCode": 800,
"returnObj": {
"detectionPointList": [
{
"pointID": "728662dd11ec810800155d307d52",
"name": "north_China",
"description": "华北",
"status": true
},
{
"pointID": "910c3625d5f0ebe505d44d4f257d6a",
"name": "south_China",
"description": "华南",
"status": true
}
],
"totalCount": 1
},
"errorCode": "",
"message": "Success",
"msgDesc": "成功"
}
状态码
状态码 | 描述 |
---|---|
200 | 请求成功 |
错误码
errorCode | 描述 |
---|---|
其他 | 参见公共错误码说明 |