メインコンテンツまでスキップ

グループを削除する

DELETE https://deploygate.com/api/organizations/{ORGANIZATION_NAME}


注意点
  • グループを削除すると、グループ内に存在するすべてのチームとアプリケーションも削除されます
  • Startup, Business, Large Business プランをご契約状態のグループは削除できません。事前にクレジットカード、PayPal ないし請求書払いをご解約いただく必要があります。

Path Params

NameTypeRequiredDescription
ORGANIZATION_NAMEstringtrueグループ名

Example

curl \
-X DELETE \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"

Result 204

{
"error": false,
"results": {
"message":"the organization was removed successfully"
}
}

Result 404

{
"error": true,
"message": "invalid organization name",
"because": "invalid organization name"
}