查询物理专线接入点

最近更新时间: 2026-09-17 00:06:03

1. 接口描述

接口请求域名: dc.api3.fincloud.tencent.cn。

查询物理专线接入点

默认接口请求频率限制:20次/秒。

接口更新时间:2025-08-28 23:05:30。

接口既验签名又鉴权。

2. 输入参数

以下请求参数列表仅列出了接口请求参数和部分公共参数,完整公共参数列表见公共请求参数

参数名称 必选 允许NULL 类型 描述
Action String 公共参数,本接口取值:DescribeAccessPoints
Version String 公共参数,本接口取值:2018-04-10
Region String 公共参数,地域信息可通过DescribeRegions接口查看产品支持的地域列表
Offset Int64 偏移量,默认为0。
示例值: 0
Limit Int64 返回数量,默认为20,最大值为100。
示例值: 100
Filters Array of Filter 过滤参数,支持基于接入点ID(AccessPointId)数组过滤
示例值:查看

3. 输出参数

参数名称 类型 描述
AccessPointSet Array of AccessPoint 接入点信息。
示例值:查看
TotalCount Uint64 接入点数量。
示例值: 100
RequestId String 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。

4. 错误码

以下仅列出了接口业务逻辑相关的错误码,其他错误码详见公共错误码

错误码 描述
MissingParameter 缺少参数错误
ResourceUnavailable 资源不可用
InternalError 内部错误
InvalidParameter 参数错误。
InvalidParameterValue 参数取值错误
UnsupportedOperation 操作不支持。
ResourceNotFound 资源不存在
UnauthorizedOperation 未授权操作

5. 示例

示例1 获取全量接入点信息

获取全量接入点信息,其中AVAILABLE是可以使用的接入点,UNAVAILABLE是不可以使用的接入点。

输入示例

https://dc.api3.{{conf.domain_main}}/?Action=DescribeAccessPoints
&<公共请求参数>

输出示例

{
    "Response": {
        "TotalCount": 6,
        "AccessPointSet": [
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "Region": "ap-place",
                "AccessPointId": "ap-cn-place-hx",
                "State": "AVAILABLE",
                "Location": "地方市顺义区后沙峪镇航信高科技产业园 ",
                "AccessPointName": "地方航信"
            },
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-place-jxq",
                "State": "AVAILABLE",
                "Location": "地方朝阳区电子城IT产业园 ",
                "AccessPointName": "地方万红路"
            },
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-place-yz",
                "State": "UNAVAILABLE",
                "Location": "地方市大兴区亦庄开发区同济中路15号",
                "AccessPointName": "地方世纪互联1"
            },
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-place-zj",
                "State": "AVAILABLE",
                "Location": "地方亦庄经济技术开发区博兴八路1号",
                "AccessPointName": "地方中金"
            },
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-place-yf",
                "State": "UNAVAILABLE",
                "Location": "地方市海淀区丰慧中路11号安泰科技园C区B4栋",
                "AccessPointName": "地方永丰"
            },
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-place-kc",
                "State": "AVAILABLE",
                "Location": "地方市经济技术开发区科创九街十五号",
                "AccessPointName": "地方科创"
            }
        ],
        "RequestId": "d591e41a-f3a5-4990-abf0-acdd88f238d9"
    }
}

示例2 获取单地域接入点信息

获取单地域接入点信息,其中AVAILABLE是可以使用的接入点,UNAVAILABLE是不可以使用的接入点。

输入示例

https://dc.api3.{{conf.domain_main}}/?Action=DescribeAccessPoints
&<公共请求参数>

输出示例

{
    "Response": {
        "TotalCount": 2,
        "AccessPointSet": [
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-test-yf",
                "State": "AVAILABLE",
                "Location": "中部电信云福DC",
                "AccessPointName": "中部云福"
            },
            {
                "LineOperator": [
                    "Telecom",
                    "Mobile",
                    "Unicom",
                    "In-houseWiring",
                    "Other",
                    "InternationalOperator"
                ],
                "AccessPointId": "ap-cn-test-yx",
                "State": "AVAILABLE",
                "Location": "中部联通云祥DC",
                "AccessPointName": "中部云祥"
            }
        ],
        "RequestId": "b6aa097b-3cd9-4c79-bf41-bb0d2427ffa1"
    }
}