We are looking for a way to auto clear the captcha for a locked out user for our Bitbucket instances. The end goal is that in our Jira Service Desk a user could submit a ticket through a queue such as "Bitbucket locked". Then Scriptrunner or other automation would take over, pull the Reporter of the ticket and run an unlock script.
I've done some research on ways this could be done and put together the following but I need a way for JSD to call this through Scriptrunner or another program and pass over the correct paraments and that's where I'm stuck.
Has anyone tried anything like this before and been able to get it to work? Or if there's another way to call an unlock please let me know.
echo 'Username'
read username
echo 'Password'
read -s password # -s flag hides password text
echo 'name'
read -r name
IFS=$IFS=$'\n'
curl -H 'Content-Type: application/json' --user $username:$password -X DELETE https://yourbitbucket.com/rest/api/1.0/admin/users/captcha?name=$name
Thanks,
Ray
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.