Disabling export and report tabs and commands

You can use REST API to disable the Business console UI project export and report tabs and commands through the group permissions.

Tabs

Use the following API command:

/v1/permissions/command/import Import tab permissions

Only DecisionArtifacts, Queries, Tests, Simulation, Deployments, Snapshots, Model and Reports tabs are supported.

Follow this JSON example:

[
  {
    "tab" : "Model",
    "disabledForGroups" : ["group1", "group2"]
  },
  {
    "tab" : "Reports",
    "disabledForGroups" : ["group1"]
  }
]
Commands

Use the following API command:

/v1/permissions/command/import Import command permissions

Only ExportBranch and GenerateReportElement commands are supported.

Follow this JSON example:

[
  {
    "command" : "ExportBranch",
    "disabledForGroups" : ["group1", "group2"]
  },
  {
    "command" : "GenerateReportElement",
    "disabledForGroups" : ["group1"]
  }
]