Hi,
I am trying to creat user using REST API
curl -u admin:pass -X POST -H "X-Atlassian-Token:nocheck" "https://localhost/rest/api/1.0/admin/users?name=testuser%26password=password%26displayName=Test+User%26emailAddress=test@example.com"
but i keep getting the following error massage
{"errors":[{"context":null,"message":"A password must be provided to create a user.","exceptionName":null}]}
I have the password in the API call, what am i missing?
Hi Ray,
I think the problem lies with the URL encoding that's been used, try switching to using a literal ampersand (&) and not %26.
curl -u admin:pass -X POST -H "X-Atlassian-Token:nocheck" "https://localhost/rest/api/1.0/admin/users?name=testuse&password=password&displayName=Test+User&emailAddress=test@example.com"
Cheers,
Jeff
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.