> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vertracloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Unlink Application

> Removes an application from the workspace. Owner only. Doesn't delete the app.

Only the workspace **owner**. An API key needs the `workspaces:write` scope. The application
itself is untouched — it just stops being associated with this workspace and goes back to
being a personal project of the owner.

### Path

<ParamField path="id" type="string" required>Workspace ID.</ParamField>
<ParamField path="app_id" type="string" required>Application ID.</ParamField>

### Response

Empty response on success.

### Errors

| Status | Code                   | When                                            |
| ------ | ---------------------- | ----------------------------------------------- |
| 403    | `WORKSPACE_OWNER_ONLY` | Caller isn't the workspace owner.               |
| 404    | `WORKSPACE_NOT_FOUND`  | Workspace doesn't exist or you're not a member. |
| 404    | `APP_NOT_FOUND`        | Application isn't linked to this workspace.     |
