Delete Project
DELETE
https://deploygate.com/api/organizations/{PROJECT_NAME}
Caution
- When deleting your Project, all teams and applications contained within that Projects are also deleted.
- Projects created for Startup, Business, and Large Business Plans under contract cannot be deleted. PayPal and/or invoices must be settled and cancelled for the contract to be terminated.
Path Params
Name | Type | Required | Description |
---|---|---|---|
PROJECT_NAME | string | true | Project Name |
Example
curl \
-X DELETE \
--url "https://deploygate.com/api/organizations/${PROJECT_NAME}" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"
Result 204
{
"error": false,
"results": {
"message":"the Project was removed successfully"
}
}
Result 404
{
"error": true,
"message": "invalid Project name",
"because": "invalid Project name"
}