API Reference
OIDC
Platform

Network Acls

AdminUpdated Sep 11, 2026

Network Acls

Backend API — secret key (Authorization: Bearer sk_…).

5 routes. Each row is one endpoint with its explanation, required scope, and whether it honours the Idempotency-Key header.

Method & path

Scope

Idem

Explanation

GET /v1/network_acls

network_acls:read

List network ACLs — per-instance IP allow/deny rules that gate access to the instance, in priority order.

POST /v1/network_acls

network_acls:write

Create a network ACL rule (allow|deny, a CIDR or single address, a priority). A malformed CIDR is refused. First match in priority order decides; an allow-list denies every unnamed IP.

GET /v1/network_acls/:id

network_acls:read

Read one network ACL rule.

PATCH /v1/network_acls/:id

network_acls:write

Update a network ACL rule's action, cidr, description, priority or enabled flag.

DELETE /v1/network_acls/:id

network_acls:write

Delete a network ACL rule. With no rules left, enforcement falls back to the ip_allowlist.

Was this page helpful?