Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

Use this file to discover all available pages before exploring further.

Replace an existing allowlisted IP with a new one.
PUT https://api.yativo.com/api/v1/ip/{id}
id
string
required
The IP record ID to update.
ip_address
string
required
The new IP address to replace the existing one.
curl -X PUT 'https://api.yativo.com/api/v1/ip/ip-a1b2c3' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: update-ip-001' \
  -d '{ "ip_address": "203.0.113.20" }'
{
  "status": "success",
  "status_code": 200,
  "message": "IP addresses updated and added to firewall."
}