# Delete account

URL: /en/docs/api/v1/accounts/id/delete
Last Updated: 2026-07-30T21:15:44.988Z

## Description
No description available.

## Available Actions
- Execute DELETE request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### DELETE /api/v1/accounts/{id}

**Delete account**

Permanently delete an account and all associated data. This action cannot be undone.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Path parameters:**

| Name | Type | Required | Description |
|---|---|---|---|
| `id` | string (uuid) | Yes | Account ID |

**Responses:**

- `200` - Account deleted successfully
  - `success` (boolean)
  - `data` (object)
    - `ok` (boolean)
    - `deleted` (boolean)
- `401` - Unauthorized
- `403` - Forbidden
- `404` - Account not found
- `500` - Internal server error

**Code samples:**

cURL:

```bash
curl -X DELETE "https://app.orbiqhq.com/api/v1/accounts/{id}" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json"
```

