We are planning on adding users - mass addition of users to jira - Is there a perl script that i can use to add the users to Jira after validating whether they are available or not - please let me know
You can get the information needed through Bobs CLI : https://bobswift.atlassian.net/wiki/display/JCLI/JIRA+Command+Line+Interface
Exists check:
jira --action getUser --userId "testuser3"
Create:
jira --action addUser --userId "testuser2" --userEmail "testuser1@x.com"
Pick a scripting language, even Perl, and process the outcomes of the check, eg adding 001, 002 to the userid perhaps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.