- API >
- API Resources >
- Teams
Delete One 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 /orgs/{ORG-ID}/teams/{TEAM-ID}
Request Path Parameters¶
Path Element | Required/Optional | Description |
---|---|---|
ORG-ID | Required. | The unique identifier for the organization associated with the team. |
TEAM-ID | Required | The unique identifier of the team you want to delete. |
Request Query Parameters¶
Field | Required/Optional | Description |
---|---|---|
envelope | Optional. | A boolean that specifies whether or not to wrap the response in an envelope. Defaults to |
pretty | Optional. | A boolean that specifies whether or not to return a "pretty-printed" JSON document. Defaults to |
Request Body Parameters¶
This endpoint does not use HTTP request body parameters.
Example Request¶
curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}"" --digest -i \ --header "Accept: application/json" \ --header "Content-Type: application/json" \ --request DELETE \ "https://cloud.mongodb.com/api/atlas/v1.0/orgs/{ORG-ID}/teams/{TEAM-ID}?pretty=true"
Example Response¶
This endpoint does not return a response body.
Give Feedback