Hi, I've tried to create an Atlassian Account with the follow email Address <redacted>. But I don't get a link to verify my email. I've also tried to get a recovery link to recover password in case some how there was an account with my email, but with no luck. How can I activate my account with that email ?
Please advise,
Hi Mrinalini,
I'd start by looking at the Access SCIM APIs, followed by looking at the Confluence API itself.
Firstly, grab the group ID (GET /scim/directory/{directoryId}/Groups).
You can then feed this into the get groups endpoint (GET /scim/directory/{directoryId}/Groups/{id}) which will return a list of SCIM users.
If this is too broad (noting it doesn't provide the search you requested), then have a look at the Confluence REST API https://developer.atlassian.com/cloud/confluence/rest/
The endpoints of interest are:
Get group members (GET /wiki/rest/api/group/member)
and
Search groups by partial query (GET /wiki/rest/api/group/picker)
The last endpoint allows you to search based on filter and supports pagination.
Hope that helps!
Jimmy
Hi Jimmy,
I think you did not understand my question properly. I want to do a search on the users that are a member of confluence-users group.
I have found out a way to do it but it does not support pagination of the final result set. First I fetch all users that are a part of the directory using Get Users API. I can fetch the users that have Confluence access by using Get Group Members API where the group name is confluence-users.
If the user from confluence-users list is present in the list of users in the directory (matched by accountId attribute) then I add those users to make my final list of users that are present in the directory and are a part of confluence-users group(that is, have Confluence access). The Get Users API supports filters but how to paginate my final list I create?
Is there a simpler way out?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.