How to request the members of a Replit team?

Hello, I’ve just started providing a foundation with the website, and I’m wondering if it’s possible to request the members of a Replit team using JavaScript. I need to connect with this team, and the Repl can be found here.

2 Likes

1: Maybe do this in another topic
2: You can use this graphql query:

query TeamMembers ($id: Int!)  { 
    team(id: $id) {
      id
      hasPrivacyInvites
      inviteLink {
        id
        code
        eduSignup
      }}}
3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.