エンタープライズの共有チームを削除する
DELETE https://deploygate.com/api/enterprises/{ENTERPRISE_NAME}/shared_teams/{SHARED_TEAM_NAME}
エンタープライズの共有チームを削除します。
Path Params
Name | Type | Required | Description |
---|---|---|---|
ENTERPRISE_NAME | string | true | エンタープライズ名 |
SHARED_TEAM_NAME | string | true | 共有チーム名 |
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"
}