Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request PUT \
--url https://v1.api.altostrat.io/metrics/arps/{siteId}/{arpEntryId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"group": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"alias": "Living Room TV"
}
'{
"id": "0c8526584284b025f3c328904724cf48a1a3848b",
"mac": "00:1A:2B:3C:4D:5E",
"ip_address": "192.168.88.254",
"interface": "bridge",
"last_seen": "5 minutes ago",
"group": "<string>",
"hostname": "my-laptop.local",
"manufacturer": "Apple, Inc.",
"site_id": "d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8",
"range": "192.168.88.0/24",
"alias": "Main Server",
"serial": "<string>"
}Updates metadata for a specific ARP entry, such as assigning it to a group or setting a custom alias.
curl --request PUT \
--url https://v1.api.altostrat.io/metrics/arps/{siteId}/{arpEntryId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"group": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"alias": "Living Room TV"
}
'{
"id": "0c8526584284b025f3c328904724cf48a1a3848b",
"mac": "00:1A:2B:3C:4D:5E",
"ip_address": "192.168.88.254",
"interface": "bridge",
"last_seen": "5 minutes ago",
"group": "<string>",
"hostname": "my-laptop.local",
"manufacturer": "Apple, Inc.",
"site_id": "d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8",
"range": "192.168.88.0/24",
"alias": "Main Server",
"serial": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier for the site.
"d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"
The unique identifier for the ARP entry (a SHA1 hash of site ID and MAC address).
"0c8526584284b025f3c328904724cf48a1a3848b"
The updated ARP entry object.
The unique identifier for the ARP entry (a SHA1 hash of site ID and MAC address).
"0c8526584284b025f3c328904724cf48a1a3848b"
The MAC address of the device.
"00:1A:2B:3C:4D:5E"
The IP address of the device.
"192.168.88.254"
The network interface on which the device was seen.
"bridge"
Human-readable string indicating when the device was last seen.
"5 minutes ago"
The ARP group this device belongs to, if any.
The device's hostname, if discovered.
"my-laptop.local"
The manufacturer of the device, derived from the MAC address.
"Apple, Inc."
The site where this device was discovered.
"d8f8f8f8-f8f8-f8f8-f8f8-f8f8f8f8f8f8"
The IP subnet range the device belongs to.
"192.168.88.0/24"
A user-defined alias for the device.
"Main Server"
The serial number of the device, if discovered via SNMP.
Was this page helpful?