查询专属IP列表

更新时间:2023-02-02 17:47:47

描述

查询专属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
                }
            ]
       }
}
*