查询可购买地区IP数量
GET /client/ip/pool/regionalAvailableIps
| 参数名 | 类型 | 描述 |
| x-merchant-token | String | 商户令牌 |
| x-merchant-code | String | 商户代码 |
| 参数名 | 必选 | 类型 | 描述 |
| type | 否 | Integer | IP类别 0广播 1原生 |
| continents | 否 | Array[String] | 州列表 |
| countryCodes | 否 | Array[String] | 国家代码列表 |
| locations | 否 | Array[String] | 省/区列表 |
/client/ip/pool/regionalAvailableIps
{
"total": 2,
"rows": [
{
"id": 4,
"type": 1,
"continent": "Eastern Asia",
"countryCode": "HK",
"location": "Hongkong",
"price": 5.000,
"ipTotals": 46
},
{
"id": 3,
"type": 0,
"continent": "Eastern Asia",
"countryCode": "HK",
"location": "Hongkong",
"price": 2.200,
"ipTotals": 111
}
],
"code": 200,
"msg": "查询成功"
}
| 参数名 | 类型 | 描述 |
| type | Integer | 状态:0-广播, 1-原生 |
| continent | String | 大洲 |
| countryCode | String | 国家代码 |
| location | String | 省/区位置 |
| price | double | 月单价 |
| ipTotals | Integer | 可购数量 |