Query network probe details
Updated at:2025-10-16
Description
Retrieve detailed information for a specified network probe.
Request structure
Plain Text
1 GET /v{version}/probe/{probeId} HTTP/1.1
2 Host: bcc.bj.baidubce.com
3 Authorization: authorization string
Request headers
There are no special headers required beyond the common headers.
Request parameters
| Parameter name | Types | Required or not | Parameter location | Description |
|---|---|---|---|---|
| version | String | Yes | URL parameter | For API version No., the current value is 1 |
| probeId | String | Yes | URL parameter | Network probe ID |
Response headers
No special headers are required beyond the standard ones.
Response parameters
| Parameter name | Types | Description |
|---|---|---|
| probeId | String | Probe ID |
| description | String | Probe description |
| destIp | String | Destination address |
| destPort | Integer | Destination port |
| frequency | Integer | Probe frequency |
| name | String | Probe name |
| payload | String | Probe content entity |
| protocol | String | Probe type, TCP, UDP, ICMP and DNS |
| sourceIps | List<String> | Probe source address |
| status | String | Status: active (available) |
| subnetId | String | ID of subnet to which it belongs |
| vpcId | String | ID of VPC to which it belongs |
Request example
Plain Text
1 GET /v1/probe/probe-6gfqbgfypumvmyh0 HTTP/1.1
2 Host: bcc.bj.baidubce.com
3 Authorization: bce-auth-v1/930192808c0c11e8b62ccf3a4a052967/2018-07-20T11:06:43Z/3600/host;x-bce-account;x-bce-client-ip;x-bce-date;x-bce-request-id;x-bce-security-token/749f35181233d0f744f30e77457dc605c6eed31c9a45856e2bf8c415245d9af1
Response example
Plain Text
1 HTTP/1.1 200 OK
2 x-bce-request-id: 1214cca7-4ad5-451d-9215-71cb844c0a50
3 Date: Thu, 16 Mar 2017 06:29:48 GMT
4 Content-Type: application/json;charset=UTF-8
5 Server: BWS
6 {
7 "probeId":"probe-6gfqbgfypumvmyh0",
8 "description":"dsdsds",
9 "destIp":"1.2.3.4",
10 "destPort":11,
11 "frequency":20,
12 "name":"probe1",
13 "payload":"qqqqqqwwwww",
14 "protocol":"UDP",
15 "sourceIps":[
16 "192.168.0.4"
17 ],
18 "status":"active",
19 "subnetId":"sbn-qz55vemw0n40",
20 "vpcId":"vpc-2pa2x0bjt26i"
21}
