Teams
Delete Team
Deletes the Team associated with the provided Id.
DELETE
/
api
/
svc
/
v1
/
teams
/
{id}
curl --request DELETE \
--url https://{controlPlaneURL}/api/svc/v1/teams/{id} \
--header 'Authorization: Bearer <token>'
{}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Team Id
Response
200
application/json
Successfully deleted the team.
The response is of type object
.
curl --request DELETE \
--url https://{controlPlaneURL}/api/svc/v1/teams/{id} \
--header 'Authorization: Bearer <token>'
{}