This article explains how to add the view space permissions permission in bulk to a specific group using Confluence Command Line Interface (CLI).
Instructions
Use the addPermissions action to add space permission to a group by providing the space details in a CSV file. Shown below are the parameters used:
...
specific group for multiple spaces.
- Create a CSV file named space.csv with the list of users space keys as required with column name as space.
Execute the following CLI command to add the VIEW permission for all the spaces mentioned in the CSV file for a group to spaces that are in space.csv file.specific group:
Once the above command is executed,Code Block theme Midnight --action runFromCsv --file "space.csv" --common "--action addPermissions --permissions "viewspace" --group "supportgroup"" --continue
You can verify that the View permission is now added to
...
the specified space(s) for the specified group in the Permissions page. The result of the command given in this example is as shown:
The given CLI command has the following parameters:
- permissions: value specifies the type of permission.
- group: value specifies the group name.
- common: is a common parameter string added to all run actions.
- continue: is used to continue processing even after errors are encountered for run actions.
Info |
---|
|