IP Addresses

Create a new IP address Position is automatically assigned to the end of the host's IP address list.

post/api/v1/ip-addresses

Request body

host_idstring uuid required
ip_addressstring required
mac_addressstring nullable

MAC address discovered from ARP, SNMP, or Docker - immutable once set

namestring nullable required
network_idstring uuid required
positioninteger

Position of this IP address in the host's IP address list (for ordering)

subnet_idstring uuid required
created_atstring date-time required
first_discovery_idstring uuid nullable
idstring uuid required
last_discovery_idstring uuid nullable
last_seen_atstring date-time
lineage_idstring uuid nullable
updated_atstring date-time required
valid_fromstring date-time
valid_tostring date-time nullable

Example request

{
  "created_at": "2026-01-15T10:30:00Z",
  "first_discovery_id": null,
  "host_id": "550e8400-e29b-41d4-a716-446655440003",
  "id": "550e8400-e29b-41d4-a716-446655440005",
  "ip_address": "192.168.1.100",
  "last_discovery_id": null,
  "last_seen_at": "2026-01-15T10:30:00Z",
  "lineage_id": null,
  "mac_address": "DE:AD:BE:EF:CA:FE",
  "name": "eth0",
  "network_id": "550e8400-e29b-41d4-a716-446655440002",
  "position": 0,
  "subnet_id": "550e8400-e29b-41d4-a716-446655440004",
  "updated_at": "2026-01-15T10:30:00Z",
  "valid_from": "2026-01-15T10:30:00Z",
  "valid_to": null
}

Response

IP address created successfully

errorstring nullable
successboolean required

Example response

{
  "data": {
    "created_at": "2026-01-15T10:30:00Z",
    "first_discovery_id": null,
    "host_id": "550e8400-e29b-41d4-a716-446655440003",
    "id": "550e8400-e29b-41d4-a716-446655440005",
    "ip_address": "192.168.1.100",
    "last_discovery_id": null,
    "last_seen_at": "2026-01-15T10:30:00Z",
    "lineage_id": null,
    "mac_address": "DE:AD:BE:EF:CA:FE",
    "name": "eth0",
    "network_id": "550e8400-e29b-41d4-a716-446655440002",
    "position": 0,
    "subnet_id": "550e8400-e29b-41d4-a716-446655440004",
    "updated_at": "2026-01-15T10:30:00Z",
    "valid_from": "2026-01-15T10:30:00Z",
    "valid_to": null
  },
  "meta": {
    "api_version": 1,
    "server_version": "0.17.7"
  }
}

Changes