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-04-20T04:23:43.712189Z",
  "id": "2907a66b-305c-480c-a08c-46046e98643f",
  "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-04-20T04:23:43.712189Z"
}

Response

Binding updated

errorstring nullable
successboolean required

Example response

{
  "data": {
    "created_at": "2026-04-20T04:23:43.728453Z",
    "id": "41f7b386-c0bc-447e-b8fe-da4111337732",
    "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-04-20T04:23:43.728453Z"
  },
  "meta": {
    "api_version": 1,
    "server_version": "0.16.1"
  }
}

Changes