/
How to update usernames in bulk using Jira Command Line Interface
How to update usernames in bulk using Jira Command Line Interface
This article explains how to update the username of a user in bulk using the app, Jira Command Line Interface.
Instructions
- Use the action updateUser with runFromCsv to add users to a group in bulk.
- Prepare a CSV file (updateuser.csv) that contains userId and newUserId columns. Enter the userId of the users that are to be modified under the userId column. Under the newUserId column enter the new user IDs that are to be added.
An example file is shown below: Run the command given below to update the usernames of the users that are provided in the .csv file (updateuser.csv in this example).
--action runFromCsv --file updateuser.csv --common "-a updateUser"
The parameters used in the above action are:
- file: Name (or path) of the file specified in the command.
- common: Common parameter string added to all run actions.
It is recommended to test the command in a non-production environment or run the action with the --simulate parameter to verify the behavior before deploying.
Related content
How to add users to groups in bulk
How to add users to groups in bulk
More like this
How to copy users to another instance
How to copy users to another instance
Read with this
Create bulk users in Jira using Jira Command Line Interface (CLI)
Create bulk users in Jira using Jira Command Line Interface (CLI)
More like this
addUser
Read with this
How to Bulk Update User Information
How to Bulk Update User Information
More like this
runFromCsv
runFromCsv
Read with this