Skip to content

org-app-audience

Manage org app audiences (audience definitions for org apps)

Authentication scope: fabric

List org app audiences in a workspace

Terminal window
fabio org-app-audience list --workspace <value>
Flag Type Required Description
--workspace string Yes Workspace ID

Read-only · Returns list

Show details of an org app audience

Terminal window
fabio org-app-audience show --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Org app audience ID

Read-only · Returns object

Create a new org app audience

Terminal window
fabio org-app-audience create --workspace <value> --name <value> --org-app-id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--name string Yes Display name
--org-app-id string Yes Parent org app ID. REQUIRED — an audience belongs to an org app; the API rejects a create without it (InvalidParentAppId)
--description string No Optional description
--sensitivity-label string No Sensitivity label ID to apply on creation

Mutates state · Returns object

Update org app audience properties (name and/or description)

Terminal window
fabio org-app-audience update --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Org app audience ID
--name string No New display name
--description string No New description

Mutates state · Returns object

Delete an org app audience

Terminal window
fabio org-app-audience delete --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Org app audience ID
--hard-delete bool No Permanently delete (cannot be recovered)

Mutates state · Destructive · Returns void

Get the definition of an org app audience

Terminal window
fabio org-app-audience get-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Org app audience ID
--decode bool No Decode base64 payloads inline (adds decodedPayload field)

Read-only · Long-running operation · Returns object

Update the definition of an org app audience

Terminal window
fabio org-app-audience update-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Org app audience ID
--file string No Definition file path (reads file content)
--content string No Definition content (inline JSON)

Mutates state · Long-running operation · Returns void