addedInput schema / additionalProperties
Added value: +false
removedInput schema / properties / action / description
Removed value: -"Operation to perform. Use 'read' to paginate/filter departments, 'read' to fetch a department by ID, or 'read_lite' for the lite version."
removedInput schema / properties / action / title
Removed value: -"Action"
changedInput schema / properties / department_id / anyOf
Previous value: -[
- {
- "type": "integer"
- },
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / department_id / description
Removed value: -"Department ID. Required for 'read' and 'read_lite' actions."
removedInput schema / properties / department_id / title
Removed value: -"Department Id"
removedInput schema / properties / limit_search / description
Removed value: -"If true, limits the search to match against the department name only."
removedInput schema / properties / limit_search / title
Removed value: -"Limit Search"
removedInput schema / properties / page / description
Removed value: -"Page offset for pagination when listing departments."
removedInput schema / properties / page / title
Removed value: -"Page"
removedInput schema / properties / page_size / description
Removed value: -"Page size for listing departments. 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: -"Search string to match against department name or user attributes."
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 departments."
removedInput schema / properties / sort_by / title
Removed value: -"Sort By"
removedInput schema / properties / sort_order / description
Removed value: -"Sort order for listing departments."
removedInput schema / properties / sort_order / title
Removed value: -"Sort Order"
removedInput schema / title
Removed value: -"zia_user_department_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_department_managerOutput",
- "type": "object"
-}New value: +null