Skip to main content
DELETE
/
v1
/
xdp
/
whitelist
Remove whitelist entry
curl --request DELETE \
  --url http://127.0.0.1:22100/v1/xdp/whitelist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ip": "<string>"
}
'
{
  "ok": true,
  "removed": true,
  "ip": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
ip
string
required

IP or CIDR text.

Response

Entry removed or not found

ok
boolean
required
removed
boolean
required
ip
string
required