Bindings

Update a Binding

Updates an existing binding. The same conflict detection rules from binding creation apply.

Validation Rules

  • Conflict detection: The updated binding must not conflict with other bindings on the same service. Interface bindings conflict with port bindings on the same interface.
put/api/v1/bindings/{id}

Path parameters

idstring uuid required

Binding ID

Request body

OR

Example request

{
  "created_at": "2026-05-01T19:08:39.690239Z",
  "id": "d4f17a47-8bee-4567-90eb-1c57731a8ed5",
  "ip_address_id": "550e8400-e29b-41d4-a716-446655440005",
  "network_id": "550e8400-e29b-41d4-a716-446655440002",
  "port_id": "550e8400-e29b-41d4-a716-446655440006",
  "service_id": "550e8400-e29b-41d4-a716-446655440007",
  "type": "Port",
  "updated_at": "2026-05-01T19:08:39.690239Z"
}

Response

Binding updated

errorstring nullable
successboolean required

Example response

{
  "data": {
    "created_at": "2026-05-01T19:08:39.709697Z",
    "id": "100ce23b-6c43-44c4-8c99-171396c38567",
    "ip_address_id": "550e8400-e29b-41d4-a716-446655440005",
    "network_id": "550e8400-e29b-41d4-a716-446655440002",
    "port_id": "550e8400-e29b-41d4-a716-446655440006",
    "service_id": "550e8400-e29b-41d4-a716-446655440007",
    "type": "Port",
    "updated_at": "2026-05-01T19:08:39.709697Z"
  },
  "meta": {
    "api_version": 1,
    "server_version": "0.16.2"
  }
}

Changes