查询云主机端口
本页目录
https://www.cloudam.cn/vps/cvmresource/ports?accountId={ACCOUNT_ID}&ip={IP}
请求方式:GET
修改云主机安全组端口
URL Parameters
Parameter | Type | Description |
---|---|---|
IP | String | 弹性公网ip地址 Example: 121.41.107.138 |
ACCOUNT_ID | String | 你的Cloudam账户ID, Cloudam会随Token一起提前发送给客户 Example: demoaccount |
Request(请求)
Headers(HTTP头)
注: 请首先联系Cloudam获取API Token,token相当于密码,请妥善保护。
{
"Authorization": "Bearer ${token}",
"Content-Type": "application/json"
}
Response(响应) - 200
Headers(响应头)
{
"Content-Type": "application/json"
}
Body(响应体JSON) -- 正确响应
{
"success": true,
"errorCode": "",
"errorMsg": null,
"ports": [
"443",
"80",
"3389",
"22"
]
}
Response Body Attributes(响应Body属性)
Attribute | Type | Description |
---|---|---|
success | boolean | 执行成功则返回true,失败则返回false |
errorCode | String | 错误代码,空字符串表示成功,User.NotAllowed 表示请求异常 如:User.NotAllowed:用户传入不正确的参数。 |
errorMsg | String | 具体的错误信息可能取值如下:The user has no right to do this |
ports | Array | 具体的开放端口号 |