Get Users From Group

GET {{baseUrl}}/rest/api/3/group/member?groupname=<string>&includeInactiveUsers=false&startAt=0&maxResults=50

Returns a paginated list of all users in a group.

Note that users are ordered by username, however the username is not returned in the results due to privacy reasons.

Permissions required: Administer Jira global permission.

Request Params

KeyDatatypeRequiredDescription
groupnamestring(Required) The name of the group.
includeInactiveUsersbooleanInclude inactive users.
startAtnumberThe index of the first item to return in a page of results (page offset).
maxResultsnumberThe maximum number of items to return per page.

RESPONSES

status: OK

{&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/group/member?groupname=jira-administrators\u0026includeInactiveUsers=false\u0026startAt=2\u0026maxResults=2&quot;,&quot;nextPage&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/group/member?groupname=jira-administrators\u0026includeInactiveUsers=false\u0026startAt=4\u0026maxResults=2&quot;,&quot;maxResults&quot;:2,&quot;startAt&quot;:3,&quot;total&quot;:5,&quot;isLast&quot;:false,&quot;values&quot;:[{&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700ede21g&quot;,&quot;name&quot;:&quot;&quot;,&quot;key&quot;:&quot;&quot;,&quot;accountId&quot;:&quot;5b10a2844c20165700ede21g&quot;,&quot;emailAddress&quot;:&quot;mia@example.com&quot;,&quot;avatarUrls&quot;:{},&quot;displayName&quot;:&quot;Mia&quot;,&quot;active&quot;:true,&quot;timeZone&quot;:&quot;Australia/Sydney&quot;,&quot;accountType&quot;:&quot;atlassian&quot;},{&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a0effa615349cb016cd8&quot;,&quot;name&quot;:&quot;&quot;,&quot;key&quot;:&quot;&quot;,&quot;accountId&quot;:&quot;5b10a0effa615349cb016cd8&quot;,&quot;emailAddress&quot;:&quot;will@example.com&quot;,&quot;avatarUrls&quot;:{},&quot;displayName&quot;:&quot;Will&quot;,&quot;active&quot;:false,&quot;timeZone&quot;:&quot;Australia/Sydney&quot;,&quot;accountType&quot;:&quot;atlassian&quot;}]}