Skip to content

scorecard

Manage Power BI Goals scorecards (Power BI Metrics, not a Fabric item)

Authentication scope: fabric

List scorecards in a workspace

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

Read-only · Returns list

Show a scorecard (add –goals to expand its goals)

Terminal window
fabio scorecard show --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Scorecard ID
--goals bool No Expand the scorecard’s goals in the response

Read-only · Returns object

Create a scorecard

Terminal window
fabio scorecard create --workspace <value> --name <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--name string Yes Scorecard name
--description string No Optional description
--contact string No Optional contact (user email or group)

Mutates state · Returns object

Delete a scorecard (permanent — Power BI has no soft delete)

Terminal window
fabio scorecard delete --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Scorecard ID

Mutates state · Destructive · Returns void

List a scorecard’s goals

Terminal window
fabio scorecard list-goals --workspace <value> --id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Scorecard ID

Read-only · Returns list

Create a goal in a scorecard

Terminal window
fabio scorecard create-goal --workspace <value> --id <value> --name <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Scorecard ID
--name string Yes Goal name
--rank string No Optional display rank (ordering)

Mutates state · Returns object

Delete a goal from a scorecard (permanent)

Terminal window
fabio scorecard delete-goal --workspace <value> --id <value> --goal-id <value>
Flag Type Required Description
--workspace string Yes Workspace ID
--id string Yes Scorecard ID
--goal-id string Yes Goal ID

Mutates state · Destructive · Returns void