Query dedicated line details
Updated at:2025-11-11
Description
Query the details of a dedicated line.
Request structure
Plain Text
1 GET /v{version}/et/{dcphyId} 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 | Whether required | Parameter location | Description |
|---|---|---|---|---|
| version | String | Yes | URL parameter | For API version No., the current value is 1 |
| dcphyId | String | Yes | URL parameter | Dedicated line ID |
Response headers
No special headers are required beyond the standard ones.
Response parameters
| Parameter name | Types | Description |
|---|---|---|
| id | String | Dedicated line ID |
| name | String | Name |
| description | String | Description |
| status | String | Dedicated line status, with the value range being ack-wait/accept/reject/building/pay-wait/established/stopped/deleted, respectively corresponding to application pending/accepted/rejected/under construction/unpaid (construction completed, with port duration fee unpaid)/available/expired/pending deletion upon expiration |
| expireTime | String | Expiration time |
| isp | String | Carrier options, with value range being ISP_CMCC/ISP_CUCC/ISP_CTC/ISP_CHH/ISP_OTHER, respectively corresponding to China Mobile/China Unicom/China Telecom/hosted dedicated line/domestic others |
| intfType | String | API specification, with value range being 1G/10G/100G |
| apType | String | Access type |
| apAddr | String | Access point |
| userName | String | Username |
| userPhone | String | User mobile phone |
| userEmail | String | User Email |
| userIdc | String | Peer address |
| tags | List<[TagModel](ET/API Reference/Appendix.md#TagModel)> | Tag list bound to the dedicated line |
Request example
Plain Text
1 GET /v1/et/dcphy-gq65bz9ip712 HTTP/1.1
2 Host: bcc.bj.baidubce.com
3 Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2017-03-11T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
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{
8 "id": "dcphy-gq65bz9ip712",
9 "name": "ZX051501-testET",
10 "description": "",
11 "status": "established",
12 "expireTime": 1,
13 "isp": "ISP_CUCC",
14 "intfType": "10G",
15 "apType": "SINGLE",
16 "apAddr": "WHGG",
17 "userName": "Zhang San",
18 "userPhone": "133*****333",
19 "userEmail": "1***@123.com",
20 "userIdc": "Beijing|Municipal Districts|Dongcheng District|Baidu Technology Park K2",
21 "tags":[
22 {
23 "tagKey": "tagKey",
24 "tagValue": "tagValue"
25 }
26 ]
27}
