addedInput schema / additionalProperties
Added value: +false
removedInput schema / properties / action
Removed value: -{
- "const": "read",
- "default": "read",
- "description": "Operation to perform. Use 'read' to paginate/filter groups or fetch a single group by ID.",
- "title": "Action",
- "type": "string"
-}
removedInput schema / properties / defined_by / description
Removed value: -"String value defined by the group name or other applicable attributes. Used to further filter results."
removedInput schema / properties / defined_by / title
Removed value: -"Defined By"
changedInput schema / properties / group_id / anyOf
Previous value: -[
- {
- "type": "integer"
- },
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / group_id / description
Removed value: -"ID of the user group. When provided, returns a single group; otherwise returns a list of groups."
removedInput schema / properties / group_id / title
Removed value: -"Group Id"
removedInput schema / properties / name / description
Removed value: -"Case-insensitive substring match on the group's name field. Resolved client-side AFTER fetching the full group list, so names like 'A000', 'a000', 'HR', 'finance' all match regardless of the underlying name's casing. Use this when you have a literal group name from the admin and just need to find its ID. The server-side `search` parameter is unreliable for groups (it sometimes matches user login IDs instead of group names) — prefer `name` for find-by-name workflows."
removedInput schema / properties / name / title
Removed value: -"Name"
removedInput schema / properties / page / description
Removed value: -"Page offset for pagination when listing groups."
removedInput schema / properties / page / title
Removed value: -"Page"
removedInput schema / properties / page_size / description
Removed value: -"Page size for listing groups. Default is 100; maximum is 1000."
removedInput schema / properties / page_size / title
Removed value: -"Page Size"
addedInput schema / properties / query
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional JMESPath expression applied to the results after the API call, for client-side filtering and projection. Field names are exactly what the Zscaler API returns. Examples: \"[?enabled==`true`]\", \"[*].{name: name, id: id}\", \"length(@)\". Omit to get the full records."
+}
removedInput schema / properties / search / description
Removed value: -"Server-side query forwarded to the ZIA list_groups endpoint. ZIA's documented behavior here is unreliable (the API has been observed to match against user login IDs rather than group names). Prefer `name` for case-insensitive substring matching on the group's name. Use `search` only when you specifically need the server-side semantics."
removedInput schema / properties / search / title
Removed value: -"Search"
removedInput schema / properties / service
Removed value: -{
- "default": "zia",
- "description": "Zscaler service name. Always 'zia' for this tool.",
- "title": "Service",
- "type": "string"
-}
removedInput schema / properties / sort_by / description
Removed value: -"Sort field for listing groups. Supported: id, name, expiry, status, external_id, rank, mod_time."
removedInput schema / properties / sort_by / title
Removed value: -"Sort By"
removedInput schema / properties / sort_order / description
Removed value: -"Sort order for listing groups. Supported: asc, desc, rule_execution."
removedInput schema / properties / sort_order / title
Removed value: -"Sort Order"
removedInput schema / title
Removed value: -"zia_user_group_managerArguments"
changedOutput schema / (root)
Previous value: -{
- "properties": {
- "result": {
- "anyOf": [
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "items": {
- "additionalProperties": true,
- "type": "object"
- },
- "type": "array"
- }
- ],
- "title": "Result"
- }
- },
- "required": [
- "result"
- ],
- "title": "zia_user_group_managerOutput",
- "type": "object"
-}New value: +null