Delete Project

  • DELETE /api/projects/<project_uuid>/ - Delete an existing project.

    • Warning: This action is irreversible and will permanently delete the project and all associated resources. Exercise extreme caution when using this endpoint.

    • The project_uuid identifies the project to be deleted.

    Request Example:

    DELETE [https://api.wayscloud.services/api/projects/550e8400-e29b-41d4-a716-446655440000/](https://api.wayscloud.services/api/projects/550e8400-e29b-41d4-a716-446655440000/)
    Authorization: Token <your_api_token>

    Status Codes:

    • 204 No Content: The project was successfully deleted.
    • 401 Unauthorized: The user making the request is not authorized.
    • 404 Not Found: The specified project project_uuid does not exist.
    • 409 Conflict: The project cannot be deleted because it still contains resources. You must delete all resources within the project before deleting the project itself.