PUT
/
zones
/
{zone_id}
/
ips
curl --request PUT \
  --url https://api.bytio.com/v1/zones/{zone_id}/ips \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "ips": [
    "<string>"
  ]
}'
{
  "status": "ok",
  "refreshed_ips": [
    "<string>"
  ]
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

zone_id
string
required

The ID of the zone to refresh IPs from.

Maximum length: 8

Body

application/json
ips
string[]

An array of strings containing the IPs from the zone you wish to refresh.

Response

200
application/json
Success
status
enum<string>
Available options:
ok
refreshed_ips
string[]

An array of IPs that were refreshed.