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

# Remove Application

> Remove an application from the workspace.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  The API key for your account. You can find this in your [account settings](https://squarecloud.app/en/account/security).
</ParamField>

Unshares an application from a workspace, revoking access for every member. Only the workspace owner can call this; it does not affect the application itself, which keeps running and stays owned by whoever uploaded it.

Use [Get Workspace](/en/api-reference/endpoint/workspace/get) to check which applications are currently shared before removing one, and [Add Application](/en/api-reference/endpoint/workspace/apps/add) to share it again later. Rate limited to 10 removals per 30 seconds per user.

### Parameters

<ParamField body="workspaceId" type="string" placeholder="Workspace Id">
  The ID of the workspace.
</ParamField>

<ParamField body="appId" type="string" placeholder="Application ID">
  The ID of the application. You can find this in the URL of your application's dashboard.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Indicates whether the call was successful.. `success` if successful, `error` if not.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success"
  }
  ```
</ResponseExample>

### Common errors

| Code                  | HTTP | Meaning                                                                             |
| --------------------- | ---- | ----------------------------------------------------------------------------------- |
| `INVALID_ID`          | 400  | `workspaceId` is missing.                                                           |
| `APP_NOT_FOUND`       | 400  | `appId` is missing, or the application is not currently shared into this workspace. |
| `WORKSPACE_NOT_FOUND` | 404  | The workspace does not exist.                                                       |
