APIs... How can i get a list of *all* users

I can get a list of all normal (full) users like this

curl --header Accept:application/json --request GET --user some.user:somepwd https://mycompany.atlassian.net/rest/api/3/users/search?maxResults=1000

But guests/externals dont show up there.

Suggestions?

1 Like

Hi Alex,

You could use the following API call to fetch the members of a group - https://developer.atlassian.com/cloud/confluence/rest/v1/api-group-group/#api-wiki-rest-api-group-groupid-membersbygroupid-get

So a workaround would be to pass the Guest group’s ID and fetch the users’ details :slight_smile: