python-atlasapi icon indicating copy to clipboard operation
python-atlasapi copied to clipboard

Implement Basic Teams Endpoints

Open mgmonteleone opened this issue 3 years ago • 0 comments

https://www.mongodb.com/docs/atlas/reference/api/teams/

Method Endpoint Description
GET /orgs/{ORG-ID}/teams Get all teams in an organization associated with {ORG-ID} to which the authenticated user has access.
GET /orgs/{ORG-ID}/teams/{TEAM-ID} Get the team with ID {TEAM-ID} in the organization associated with {ORG-ID}.
GET /orgs/{ORG-ID}/teams/byName/{TEAM-NAME} Get the team with name {TEAM-NAME} in the organization associated with {ORG-ID}.
GET /orgs/{ORG-ID}/teams/{TEAM-ID}/users Get all users assigned to the team with ID {TEAM-ID} in the organization associated with {ORG-ID}.

mgmonteleone avatar Apr 13 '22 04:04 mgmonteleone