Skip to main content
DELETE
/
v1
/
workspaces
/
{org_id}
/
apps
/
{app_id}
Remove Application from Workspace
curl --request DELETE \
  --url https://api.vertracloud.app/v1/workspaces/{org_id}/apps/{app_id}
{}
org_id
string
required
The ID of the workspace to remove the application from.
app_id
string
required
The ID of the application to remove from the workspace.

Response

{}

Error Responses

code
string
The error code indicating the reason for failure. Possible values:
  • FORBIDDEN: The user is not authenticated, lacks sufficient permissions, or is not an owner/admin of the workspace.
  • APP_NOT_FOUND: The specified application does not exist or does not belong to the user.
message
string
A descriptive message providing additional details about the error.
{
  "code": "FORBIDDEN"
}