Remove Shared Team from Enterprise
DELETE https://deploygate.com/api/enterprises/{ENTERPRISE_NAME}/shared_teams/{SHARED_TEAM_NAME}
Remove shared team from Enterprise.
Path Params
Name | Type | Required | Description |
---|---|---|---|
ENTERPRISE_NAME | string | true | Name of Enterprise |
SHARED_TEAM_NAME | string | true | Name of Shared Team |
Example
curl \
-X DELETE \
--url "https://deploygate.com/api/enterprises/${ENTERPRISE_NAME}/shared_teams/${SHARED_TEAM_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"
Result 200
{
"error": false,
"message": "${SHARED_TEAM_NAME} was removed"
}