List all privileges available in the organisation. Privileges can be assigned to roles.
iics privilege list [flags]| Subcommand | Description |
|---|---|
list |
List all privileges |
No command-specific flags. All global flags apply.
| Column | Description |
|---|---|
id |
Privilege ID |
name |
Privilege name |
service |
Service the privilege applies to |
description |
Description of what the privilege grants |
# List all privileges in table format
iics privilege list
# List as JSON for scripting
iics privilege list --output json
# Find privileges for a specific service
iics privilege list --output json | jq '.[] | select(.service == "DataIntegration")'# List all privileges in table format
iics privilege list
# List as JSON for scripting
iics privilege list --output json
# Find privileges for a specific service
$privileges = iics privilege list --output json | ConvertFrom-Json
$privileges | Where-Object { $_.service -eq "DataIntegration" }