Skip to main content
Use this endpoint to permanently delete a workspace from your Virtus Cloud account. Deleting a workspace removes all member associations and application links. Only the workspace owner can delete a workspace — members and admins cannot. This action does not delete the applications themselves; it only removes the workspace container.

Request

DELETE https://api.virtuscloud.app/v2/workspaces

Headers

Authorization
string
required
Your Virtus Cloud API key. Pass it directly as the header value — no prefix required.Example: Authorization: vc_live_xxxxxxxxxxxx

Body

workspaceId
string
required
The unique identifier of the workspace to delete.

Response

status
string
Returns "success" when the workspace is deleted successfully.
Deleting a workspace is permanent. All members will lose access immediately, and all application links will be removed. The applications themselves are not deleted — only the workspace container is.

Examples

curl -X DELETE https://api.virtuscloud.app/v2/workspaces \
  -H "Authorization: <api_key>" \
  -H "Content-Type: application/json" \
  -d '{"workspaceId": "dcedcd13d7e272a7b32a70f6a1d180f23c12d759"}'

Response Example

{
  "status": "success"
}