Skip to main content

Want to get users list who are having access to workspace

  • September 13, 2024
  • 7 replies
  • 26 views

want to get users list who are having access to workspace. I am using below query

query {

      workspaces(ids:[some id,some id1]){
        id
          users_subscribers{
            id
            name
            email
            is_admin
          }
        }
    }  

i am able to access two workspaces but in api response getting my user id in only one workspace. can any one help me how to see the list of users who are having access to corresponding workspaces

7 replies

rachelatmonday
Forum|alt.badge.img
  • monday.com Team Member
  • September 13, 2024

Hi @viswanath,

Welcome to the community!

Just so you know, I changed the category of your post so it goes in the monday Apps & Developers queue!

Best,
Rachel


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • September 17, 2024

Hello there @viswanath,

Just to be sure, do you want to know which users can see the workspace, or which users are members of it?


Forum|alt.badge.img
  • New Participant
  • December 19, 2024

Hi @Matias.Monday !

Not the original creator of the post, but interested to know if there’s a straightforward way to get the list of members of a specific workspace?

Thanks 🙂


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • December 22, 2024

Hello there @Vania_Omnidea,

You can check the workspace’s subscribers as shown here:

{
  workspaces(ids: 9166229) {
    users_subscribers {
      id
      name
    }
    teams_subscribers {
      id
      name
    }
    owners_subscribers {
      id
      name
    }
    team_owners_subscribers {
      id
      name
    }
  }
}{
  workspaces(ids: 1234567890) {
    users_subscribers {
      id
      name
    }
    teams_subscribers {
      id
      name
    }
    owners_subscribers {
      id
      name
    }
    team_owners_subscribers {
      id
      name
    }
  }
}

I hope that helps!

Cheers,
Matias


rob
Forum|alt.badge.img
  • monday.com Partner
  • December 23, 2024

Thank you, Matias.


Forum|alt.badge.img
  • New Participant
  • December 23, 2024

Amazing, thank you 🙂


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • December 23, 2024

Happy to help!!!