Skip to content

org-app

Manage org apps (organizational Power Apps)

Authentication scope: fabric

List org apps in a workspace

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

Read-only · Returns list

Show details of an org app

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

Read-only · Returns object

Create a new org app

Terminal window
fabio org-app create --workspace <value> --name <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--name string Yes Display name
--description string No Optional description
--sensitivity-label string No Sensitivity label ID to apply on creation

Mutates state · Returns object

Update org app properties (name and/or description)

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

Mutates state · Returns object

Delete an org app

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

Mutates state · Destructive · Returns void

Get the definition of an org app

Terminal window
fabio org-app get-definition --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Org app 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

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

Mutates state · Long-running operation · Returns void