Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Where's the API to get group membership in Organizations REST API?

KC Wong
Contributor
April 12, 2026

https://developer.atlassian.com/cloud/admin/organization/rest/api-group-groups/#api-v2-orgs-orgid-directories-directoryid-groups-groupid-memberships-post

The organizations REST API has add/remove users from groups, but not LIST users in group?

I am supposed to switch back to Jira Cloud REST API for that? Why the heck is list members in group missing in organizations REST API?

2 answers

1 accepted

3 votes
Answer accepted
Salih Tuç
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
April 12, 2026

Hi @KC Wong ,

Of course Organizations Rest API has that feature; but it is a hidden gem. You can check for "Get users in an organization" endpoint.

Here, after adding orgId and directoryId (you can add - for all directories), you can add groupIds as query parameter and it can list the users under that group in the organization.

And the other option is using the group endpoint that @Andrea Robbins mentioned above.

Best,

 

1 vote
Andrea Robbins
Community Champion
April 12, 2026

Hi @KC Wong

The most straightforward supported way to list members of a group is currently via the Jira Cloud Platform REST API group endpoint:

List users in a group (paginated):

GET /rest/api/3/group/member?groupId={groupId}

See this page for more info

So for a Jira site, the “group member list” capability exists in Jira’s product API, not in the Org Admin API.

I am guessing the reason is because (unless Atlassian changed it again) that groups are site based and not organization based, or at least not for all organizations. This is due to some customers on the centralized user management experience (where users & groups are managed by the org) vs the de-centralized user experience (where users & groups are managed by site).

KC Wong
Contributor
April 16, 2026

I'm trying to export a list of users and their user group memberships using REST API.

But since the API can only query users belonging to a list of specific groups (from 1 to 10):

1. For each directory in the organization
2. For each user in the directory
3. ???

So you cannot do that. Instead you have to:
1. For each directory in the organization
2. For each group in the directory
3. Get list of members
4. Store the data in a map
Then: 
1. For each directory in the organization
2. For each user in the directory
3. Get list of users
4. Check the data stored to find which groups the user has

I also hit HTTP 429 too many request trying to store the membership data (I don't have this problem using Jira Cloud REST API).

At this point I'd rather use two different API tokens and use Jira Cloud REST API.

 The Organization REST API is just janky. 

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
TAGS
AUG Leaders

Atlassian Community Events