Query Cloud Smart Network details
Updated at:2025-11-11
Description
Query the details of a specified Cloud Smart Network.
Request structure
Plain Text
1GET /v{version}/csn/{csnId} HTTP/1.1
2Host: csn.baidubce.com
3Authorization: authorization string
Request headers
There are no special headers required beyond the common headers.
Request parameters
| Parameter name | Type | Is it required | Parameter position | Description |
|---|---|---|---|---|
| version | String | Yes | URL parameter | API version number, current value is 1. |
| csnId | String | Yes | URL parameter | Cloud Smart Network ID |
Response headers
No additional headers beyond standard ones.
Response parameters
| Parameter name | Type | Description |
|---|---|---|
| name | String | Name of the Cloud Smart Network |
| description | String | Description of the Cloud Smart Network |
| csnId | String | Cloud Smart Network ID |
| status | String | Status of the Cloud Smart Network |
| instanceNum | Integer | Number of network instances loaded by the Cloud Smart Network |
| csnBpNum | Integer | Number of bandwidth packages bound to the Cloud Smart Network |
| createdTime | String | Creation time of the Cloud Smart Network |
| tags | List<[TagModel](CSN/API Reference/Appendix.md#TagModel)> | Tag information bound to the Cloud Smart Network |
Request example
Plain Text
1GET /v1/csn/csn-c5s0isempeiscgyc HTTP/1.1
2Host: csn.baidubce.com
3Authorization: bce-auth-v1/5e5a8adf11ae475ba95f1bd38228b44f/2016-04-10T08:26:52Z/1800/host;x-bce-date/ec3c0069f9abb1e247773a62707224124b2b31b4c171133677f9042969791f02
Response example
Plain Text
1HTTP/1.1 200 OK
2x-bce-request-id: 1214cca7-4ad5-451d-9215-71cb844c0a50
3Date: Thu, 16 Mar 2017 06:29:48 GMT
4Content-Type: application/json;charset=UTF-8
5Server: BWS
6{
7 "name":"csn",
8 "description":"desc",
9 "csnId":"csn-c5s0isempeiscgyc",
10 "status": "active",
11 "instanceNum":5,
12 "csnBpNum":3,
13 "createdTime": "2024-11-19T12:46:01Z",
14 "tags": [
15 {
16 "tagKey": "tagKey",
17 "tagValue": "tagValue"
18 }
19 ]
20}
