- API >
- API Resources >
- Teams
Remove a User from a Team¶
The Atlas API authenticates using HTTP Digest Authentication. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request.
To learn how to configure API access for an Atlas project, see Configure Atlas API Access.
https://cloud.mongodb.com/api/atlas/v1.0
Syntax¶
DELETE /api/atlas/v1.0/orgs/{ORG-ID}/teams/{TEAM-ID}/users/{USER-ID}
Request Path Parameters¶
Path Element | Required/Optional | Description |
---|---|---|
ORG-ID | Required. | The unique identifier for the organization that contains the team from which you want to remove a database user. |
TEAM-ID | Required | The unique identifier of the team from which you want to remove a database user. |
USER-ID | Required | The unique identifier for the database user that you want to remove from the specified team. |
Request Query Parameters¶
This endpoint does not use HTTP request path parameters.
Request Body Parameters¶
This endpoint does not use HTTP request path parameters.
Response¶
This endpoint does not return a response body.
Example¶
Request¶
curl -X DELETE -i --digest --user "{PUBLIC-KEY}:{PRIVATE-KEY}" \ "https://cloud.mongodb.com/api/atlas/v1.0/orgs/6001f2c580eef55aedbc6bb1/teams/6bdb97c780eef5147f823666/users/69g63c0980eef52994dbfcge"
Response¶
This endpoint does not return a response body.
Give Feedback