Projects¶
Note
Groups and projects are synonymous terms. Your {GROUP-ID}
is the
same as your project ID. For existing groups, your group/project ID
remains the same. The resource and corresponding endpoints use the
term groups
.
The groups
resource provides access to retrieve or create Atlas
projects.
https://cloud.mongodb.com/api/atlas/v1.0
Endpoints¶
Method | Endpoint | Description |
---|---|---|
GET | /groups | Get all projects that the authenticated user can access. |
GET | /groups/{GROUP-ID} | Get information about the project associated with
{GROUP-ID} . |
GET | /groups/byName/{GROUP-NAME} | Get information about the project associated with
{GROUP-NAME} . |
POST | /groups | Create one project. |
DELETE | /groups/{GROUP-ID} | Delete one project. |
GET | /groups/{GROUP-ID}/teams/ | Get information about the teams assigned to the project
associated with {GROUP-ID} . |
POST | /{GROUP-ID}/teams/ | Assign an Atlas team to the
project associated with {GROUP-ID} . |
DELETE | /groups/{GROUP-ID}/teams/{TEAM-ID} | Removes the specified Atlas team from the specified project. |
GET | /groups/{GROUP-ID}/users | Get information about the Atlas users assigned to the project
associated with {GROUP-ID} . |
DELETE | /groups/{GROUP-ID}/users/{USER-ID} | Remove the specified Atlas user from the project associated
with {GROUP-ID} . |
Give Feedback