python-atlasapi
python-atlasapi copied to clipboard
Implement Basic Teams Endpoints
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}. |