This API is used to update a floating IP address.
During the update, the ID of the floating IP address must be provided in the URL.
If port_id is left blank, the floating IP address has been unbound from the port.
Parameter |
Type |
Mandatory |
Description |
|---|---|---|---|
floatingip |
floatingip object |
Yes |
Specifies the floating IP address list. For details, see Table 3. |
Parameter |
Type |
Description |
|---|---|---|
floatingip |
floatingip object |
Specifies the floating IP address list. For details, see Table 5. |
Parameter |
Type |
Description |
|---|---|---|
status |
String |
Specifies the floating IP address status. The value can be ACTIVE, DOWN, or ERROR.
|
id |
String |
Specifies the floating IP address ID. |
floating_ip_address |
String |
Specifies the floating IP address. |
floating_network_id |
String |
Specifies the external network ID. |
router_id |
String |
Specifies the ID of the belonged router. |
port_id |
String |
Specifies the port ID. |
fixed_ip_address |
String |
Specifies the private IP address of the associated port. |
tenant_id |
String |
Specifies the project ID. |
dns_name |
String |
Specifies the DNS name. |
dns_domain |
String |
Specifies the DNS domain. |
created_at |
String |
Specifies the time (UTC) when the floating IP address is created. Format: yyyy-MM-ddTHH:mm:ss |
updated_at |
String |
Specifies the time (UTC) when the floating IP address is updated. Format: yyyy-MM-ddTHH:mm:ss |
PUT https://{Endpoint}/v2.0/floatingips/b997e0d4-3359-4c74-8f88-bc0af81cd5a2
{
"floatingip": {
"port_id": null
}
}
PUT https://{Endpoint}/v2.0/floatingips/b997e0d4-3359-4c74-8f88-bc0af81cd5a2
{
"floatingip": {
"port_id": "f91f5763-c5a2-4458-979d-61e48b3c3fac"
}
}
Status code: 200
(The floating IP address is unbound from the port.)
{
"floatingip": {
"id": "b997e0d4-3359-4c74-8f88-bc0af81cd5a2",
"status": "DOWN",
"router_id": null,
"tenant_id": "bbfe8c41dd034a07bebd592bf03b4b0c",
"floating_network_id": "0a2228f2-7f8a-45f1-8e09-9039e1d09975",
"fixed_ip_address": null,
"floating_ip_address": "88.88.215.205",
"port_id": null,
"dns_name": "ecs-80-158-78-239",
"dns_domain": "reverse.domain-name.com",
"created_at": "2025-03-14T14:53:42",
"updated_at": "2026-03-23T20:47:41"
}
}
{
"floatingip": {
"id": "b997e0d4-3359-4c74-8f88-bc0af81cd5a2",
"status": "DOWN",
"router_id": null,
"tenant_id": "bbfe8c41dd034a07bebd592bf03b4b0c",
"floating_network_id": "0a2228f2-7f8a-45f1-8e09-9039e1d09975",
"fixed_ip_address": "192.168.10.3",
"floating_ip_address": "88.88.215.205",
"port_id": "f91f5763-c5a2-4458-979d-61e48b3c3fac",
"dns_name": "ecs-80-158-78-239",
"dns_domain": "reverse.domain-name.com",
"created_at": "2025-03-14T14:53:42",
"updated_at": "2026-03-23T20:47:41"
}
}
See Status Codes.
See Error Codes.