查询专属IP
描述
查询专属IP列表
请求参数
| 参数名 | 参数类型 | 是否必填 | 参数说明 |
|---|---|---|---|
| Action | String | 是 | 操作方法:ListExclusiveIp,此参数为公共参数,不必放body里面 |
| IpAddress | String | 否 | 专属IP地址 |
| CreateTimeBegin | Integer | 否 | 创建开始时间戳 |
| CreateTimeEnd | String | 否 | 创建结束时间戳 |
| DueTimeBegin | String | 否 | 到期开始时间戳 |
| DueTimeEnd | String | 否 | 到期开始时间戳 |
| Ids | Array | 否 | 专属IP ID集合 |
| PageNo | Integer | 否 | 页码,默认第1页 |
| PageSize | Integer | 否 | 每页数量,默认10条 |
| ProductStatus | String | 否 | 产品状态 产品状态 NORMAL:正常;OVERTIMER:过期;ARREARAGE:欠费 |
| PayType | String | 否 | 付费类型 ONDEMAND:按量付费;PREPAID:包年包月 |
返回参数
| 名称 | 类型 | 说明 |
|---|---|---|
| List | List | 由List组成的数组格式,返回云手机列表信息 |
List
云手机列表的数据类型
| 名称 | 类型 | 说明 | |
|---|---|---|---|
| Id | String | 专属IP ID | |
| Name | String | 专属名称 | |
| AssignStatus | String | 绑定状态 IDLE 未分配;ASSIGNED 已分配 | |
| PayType | String | 付费类型 ONDEMAND:按量付费;PREPAID:包年包月 | |
| ProductModelId | String | 产品型号ID | |
| ProductStatus | String | 产品状态 NORMAL:正常;OVERTIMER:过期;ARREARAGE:欠费 | |
| BandwidthSize | Integer | 带宽大小 | |
| DeviceId | String | 绑定云手机ID | |
| DeviceName | String | 云手机名称 | |
| EipAddress | String | IP地址 | |
| DueTime | Long | 到期时间戳 | |
| CloseTime | Long | 关闭时间戳 | |
| CreateTime | Long | 创建时间戳 | |
| UpdateTime | Long | 更新时间戳 | |
| Status | String | 状态 | 正常 NORMAL 异常 ERROR 绑定中ASSOCIATING 解绑中 DISSOCIATING 创建中 CREATING |
| Region | String | 机房标识 | |
| GroupId | String | 分组ID |
请求示例
post https://api.chinac.com/v2/?Action=ListExclusiveIp&其他公共参数
返回示例
{
"code": 10000,
"message": "",
"data": {
"List": [
{
"AssignStatus": "IDLE",
"BandwidthSize": 10,
"CreateTime": 1669079936000,
"DueTime":1669079936000,
"CloseTime":1669079936000
"EipAddress": "103.36.xx.xx",
"Id": "cpeip-xxxxxxx",
"PayType": "PREPAID",
"ProductModelId": 407004,
"ProductStatus": "NORMAL",
"Region": "cn-jsha-cloudphone",
"Status": "NORMAL",
"UpdateTime": 1669970564000
},
{
"AssignStatus": "IDLE",
"BandwidthSize": 10,
"CreateTime": 1669079203000,
"EipAddress": "103.36.xx.xx",
"Id": "cpeip-y1158xxxxx",
"PayType": "ONDEMAND",
"ProductModelId": 407004,
"ProductStatus": "NORMAL",
"Region": "cn-jsha-cloudphone",
"Status": "NORMAL",
"UpdateTime": 1669079204000
}
]
}
}