I am getting the below error in rest API call for getting the list of users from the specific group.
Here is the API call I am using
http://localhost:8080/rest/api/2/group/member/?jql=groupname="group name"
Hi Sandesh,
according to https://docs.atlassian.com/software/jira/docs/api/REST/9.11.0/#api/2/group-getUsersFromGroup , you should use this:
http://localhost:8080/rest/api/2/group/member?groupname=group-name
"jql" parameter should not be used.
So for example:
http://www.example.com/rest/api/2/group/member?groupname=jira-administrators
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.