Use this endpoint to permanently delete an application from Virtus Cloud. When you delete an application, Virtus Cloud stops the running process, releases all allocated resources (RAM, CPU, and storage), and removes every file associated with the deployment. This operation is irreversible — there is no way to recover a deleted application or its files after the request completes.
Deleting an application is permanent. Back up any files or data you need before issuing this request. Once the deletion succeeds, all deployed files, logs, and configuration are gone.
Endpoint
DELETE https://api.virtuscloud.app/v2/apps/{app_id}
Path parameters
The unique ID of the application to delete. You can find this in the URL of your application’s dashboard page on Virtus Cloud.
Response
Indicates whether the request succeeded. Returns "success" when the application has been permanently deleted.
Code example
curl --request DELETE \
--url https://api.virtuscloud.app/v2/apps/<app_id> \
--header "Authorization: <your_api_key>"
Response example