静态IP 分配
POST
/api/v1/static/alloc
Request
Body Params application/json
staticId
integer | null
required
duration
integer | null
required
alloc
array[object (Alloc) {2}] | null
required
ipNum
integer | null
required
>= 1<= 300
regionId
integer | null
required
duplicate
string | null
required
notifyUrl
string | null
optional
Example
{
"staticId": 0,
"duration": 0,
"alloc": [
{
"ipNum": 1,
"regionId": 0
}
],
"duplicate": "string",
"notifyUrl": "string"
}
Responses
🟢200Success
application/json
Body
msg
string | null
optional
code
integer | null
optional
data
object (StaticIpApiAllocVO)
optional
orderNo
string | null
optional
Example
{
"msg": "",
"code": 0,
"data": {
"orderNo": ""
}
}
Modified at 2025-04-03 12:09:08