> ## 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.

# Delete Workspace

> Delete 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>

Permanently deletes a workspace and its member list. Only the workspace owner can call this endpoint; a member who no longer wants access should call [Leave Workspace](/en/api-reference/endpoint/workspace/leave) instead.

Deleting a workspace only removes the sharing relationship: the applications that were shared into it keep running under their original owner and are unaffected. To review who has access before deleting, call [Get Workspace](/en/api-reference/endpoint/workspace/get). This endpoint is rate limited to 1 deletion every 10 seconds per user.

### Parameters

<ParamField body="workspaceId" type="string" placeholder="Workspace Id">
  The ID of the workspace.
</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. |
