QueryPrivateConnectPrice

1. 接口描述

调用本接口用于二层网络专线询价。

2. 请求参数

以下请求参数列表仅列出了接口中需要的请求参数

参数名称
必选
类型
描述

internetType

网络计费类型。

默认值为ByBandwidth。

bandwidthMbps

Integer

二层网络专线的最大带宽限制。 默认值是10,单位:Mbps。

endpointA

二层网络专线A端连接点信息。

endpointZ

二层网络专线Z端连接点信息。

3. 响应结果

参数名称
类型
描述

requestId

String

唯一请求 ID。

每次请求都会返回。定位问题时需要提供该次请求的 RequestId。

price

二层网络专线带宽价格。

stock

Integer

二层网络专线带宽可用库存,单位:Mbps。

endpointAPrice

二层网络专线A端连接点价格信息。

endpointZPrice

二层网络专线Z端连接点价格信息。

4. 代码示例

1. 对1个二层网络专线进行询价,带宽为10Mbps,A端为数据中心端口,Z端为公有云。

POST /api/v2/sdn HTTP/1.1
Host: console.zenlayer.com
Content-Type: application/json
X-ZC-Action: QueryPrivateConnectBandwidthPrice
<Common Request Params>

Request:
{
    "internetType": "ByBandwidth",
    "bandwidthMbps": 50,
    "endpointA": {
        "dcId": "822b9bd9-44f0-4279-a64d-568f5bc4a77b",
        "portType": "10G",
        "buildCrossConnectWithAssisted": true
    },
    "endpointZ": {
        "cloudType": "AWS",
        "dcId": "AMS1",
        "bandwidthMbps": 50,
        "vlanId": 1000,
        "cloudRegionId": null
    }
}

Response:
{
    "requestId": "T746CA1D1-339E-4344-939F-E089ABD246B7",
    "response": {
        "price": {
            "unitPrice": 27.750000,
            "originalPrice": null,
            "discountPrice": null,
            "discount": 100,
            "stepPrices": null,
            "discountUnitPrice": 27.750000,
            "chargeUnit": "DAY",
            "amountUnit": null
        },
        "requestId": "T746CA1D1-339E-4344-939F-E089ABD246B7",
        "endpointAPrice": {
            "crossConnectOneTimeConstructionPrice": {
                "unitPrice": 500.000000,
                "originalPrice": null,
                "discountPrice": null,
                "discount": null,
                "stepPrices": null,
                "discountUnitPrice": 500.000000,
                "chargeUnit": "MONTH",
                "amountUnit": null
            },
            "price": {
                "unitPrice": 0.550000,
                "originalPrice": null,
                "discountPrice": null,
                "discount": 100,
                "stepPrices": null,
                "discountUnitPrice": 0.550000,
                "chargeUnit": "DAY",
                "amountUnit": null
            },
            "stock": 11,
            "crossConnectPrice": {
                "unitPrice": 15.000000,
                "originalPrice": null,
                "discountPrice": null,
                "discount": 100,
                "stepPrices": null,
                "discountUnitPrice": 15.000000,
                "chargeUnit": "MONTH",
                "amountUnit": null
            }
        },
        "endpointZPrice": {
            "crossConnectOneTimeConstructionPrice": null,
            "price": {
                "unitPrice": 5.000000,
                "originalPrice": null,
                "discountPrice": null,
                "discount": 100,
                "stepPrices": null,
                "discountUnitPrice": 5.000000,
                "chargeUnit": "DAY",
                "amountUnit": null
            },
            "stock": null,
            "crossConnectPrice": null
        },
        "stock": 5000
    }
}

5. 开发者工具

Zenlayer Cloud API 2.0 提供了配套的开发工具集(SDK),未来会陆续支持更多开发语言,方便快速接入和使用Zenlayer的产品和服务。

6. 错误码

下面包含业务逻辑中遇到的错误码,其他错误码见公共错误码

HTTP状态码
错误码
说明

404

INVALID_DATACENTER_NOT_FOUND

数据中心不存在。

400

INVALID_PRIVATE_CONNECT_NOT_SUPPORT

当前数据中心暂不支持二层网络专线。

最后更新于