Hello,
I'm currently building a small script that adds a user to a project's role, and I'm not sure about the user value.
I followed the documentation at https://docs.atlassian.com/jira/REST/cloud/#api/2/project/{projectIdOrKey}/role and in the Add Actors users, I currently provide the user key but the API keeps returning 404 (it works with groups !)
I've validated that the project existed, along with the role in the project (since the GET call returns fine & the POST failed with 404). I feel that I pass the wrong value in the user ({ "user" : ["admin"] })
Where should be the value & how could I get more info about the encountered error? (I call the API from Java using Jersey).
Thanks in advance,
Maxence VANBESIEN
Hello Swetha,
I've tried and it also works for my for my admin & sysadmin... But not non-admin users...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Maxcence,
It works for non admin users too for me. Can you paste the error here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nothing more than the 404..., when calling through Jersey (in Java)
When doing with cURL, I get the following
{"errorMessages":["We can't find 'Maxence.Vanbesien' in any accessible user directory. Check they're still active and available, and try again."],"errors":{}}
While querying the user direclty https://.../jira/rest/api/2/user?username=Maxence.Vanbesien returns the right information ({"self":"https://kazan.atosworldline.com/jira/rest/api/2/user?username=Maxence.Vanbesien","key":"maxence.vanbesien","name":"Maxence.Vanbesien","emailAddress":"...","avatarUrls":{...},"displayName":"Maxence Vanbésien","active":true,"timeZone":"Europe/Paris","locale":"en_UK","groups":{"size":7,"items":[]},"applicationRoles":{"size":1,"items":[]},"expand":"groups,applicationRoles"})
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you try with any other non-admin user other than maxence.vanbesien?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think I found the solution...
The username should not be the name but the key (case is different in my case) and when using Jersey, we need to specify the type & the accept parameters (your cURL command gave me the clue)
(client.resource(roleURL).type("application/json").accept("application/json").post(element.toString()))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good to hear that :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is more like a documentation issue.
In jira official document, username should be used. But user key is the one actually accepted. Username and user key can be the same most time but different sometimes. JIRA also provides a rest api for getting user info. You can use that API to see if that is your case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your reply !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks very much. This works also with the project role services for this action.
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.