unifi_acl_rules
Manage ACL rules on UniFi Network consoles: list, create, reorder, update, and delete rules with pagination and filtering.
Instructions
ACL rules and their ordering. Operations:
list (Read): List ACL Rules
create (Create): Create ACL Rule
get_ordering (Read): Get User-Defined ACL Rule Ordering
update_ordering (Update): Reorder User-Defined ACL Rules
delete (Destructive): Delete ACL Rule — requires confirm: true
get (Read): Get ACL Rule
update (Update): Update ACL Rule List results are pages: { offset, limit (max 200), count, totalCount, data[] }. Filtering: pass filter as property.function(args); combine with and(...), or(...), not(...). Functions: eq, ne, gt, ge, lt, le, like, in, notIn, isNull, isNotNull; SET: contains, containsAny, containsAll, containsExactly, isEmpty. Strings use single quotes ('guest'); like patterns: '.'=one char, '*'=any run, ''=escape. For request-body shapes call unifi_spec with { operation: "unifi_acl_rules." }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Request body for: create, update_ordering, update. Exact schema via unifi_spec. | |
| limit | No | Page size (default 25, max 200). Used by: list. | |
| filter | No | Filter expression (see tool description). Used by: list. | |
| offset | No | Pagination offset (default 0). Used by: list. | |
| siteId | No | siteId (uuid). Used by: list, create, get_ordering, update_ordering, delete, get, update. | |
| confirm | No | Must be true to execute: delete. These change or remove live configuration. | |
| aclRuleId | No | aclRuleId (uuid). Used by: delete, get, update. | |
| consoleId | No | Cloud mode only: the console to target. Discover IDs with unifi_consoles. Ignored in direct (single-console) mode. | |
| operation | Yes | Which operation to perform. |