security

PATCH /v1/ip-allow/{entry_id}

Change an entry.

All security endpoints

Authentication

Send an API key as a bearer token. This endpoint does not state a specific permission in the specification, so give your key the least it needs and check the response rather than assuming.

Where your organisation id goes

This endpoint takes org_id as a query parameter. Leave it out and the call covers your whole tenancy subtree; send it to narrow the call to one organisation.

Your organisation id is on the API keys screen in your dashboard, beside the key itself. It is the same id in every call you make.

Try it

Replace anything in angle brackets with your own values, and the key placeholder with a key from your dashboard.

curl -X PATCH https://api.zinndigital.com/v1/ip-allow/{entry_id} \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "cidr": <string>, "label": <string> }'

Signed in? The API console in your dashboard fills in your real organisation id and your own key, and runs the request against the live API so you can see the actual response. Open this endpoint in the API console

Details

Partial update. Disabling an entry (`enabled: false`) is the reversible way to narrow access during an incident - it keeps the range visible so you can see what you turned off, which a deletion does not.

Parameters

NameTypeRequiredWhat it is
entry_id (path)stringYes
org_id (query)stringNo

Request body

NameTypeRequiredWhat it is
cidrstringYesAn address or a CIDR range. `0.0.0.0/0` and `::/0` are refused, as is anything broader than /8 (IPv4) or /32 (IPv6). Both families are checked - rejecting only the IPv4 literal…
labelstringYes
expires_atstringNo
enabledbooleanNo

Response

NameTypeRequiredWhat it is
idstringYes
scopestring<staff_infra, staff_site, customer_site>Yes
cidrstringYesCanonical CIDR. A bare address is stored as a host network (`/32`, or `/128` for IPv6) so one column answers both "is this a range" and "does it contain X".
labelstringYesRequired. An unlabelled range is one nobody dares remove, which is how a list grows until it stops being a control.
expires_atstringNonull = permanent. An expired entry is NOT deleted - it stays visible and greyed so an operator can see what lapsed and re-add it.
enabledbooleanYes
expiredbooleanYesComputed server-side. Two surfaces deriving "is this still in force?" from a raw timestamp is two implementations of one decision, and they disagree on the boundary second.
in_forcebooleanYesenabled AND not expired - the only field that decides anything.
created_bystringYesAudit ref of whoever added it (`user:<id>` / `apikey:<id>`).
created_atstringYes