Skip to main content
Use this endpoint to remove an application from a workspace. This unlinks the application so workspace members can no longer access it through the workspace. The application itself is not deleted — it remains in your Virtus Cloud account and continues to run as usual.

Request

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

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 remove the application from.
appId
string
required
The unique identifier of the application you want to unlink from the workspace.

Response

status
string
Returns "success" when the application is unlinked from the workspace successfully.
Removing an application from a workspace does not stop or delete the application. It continues running under your account; only workspace member access is revoked.

Examples

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

Response Example

{
  "status": "success"
}