# Delete API key

URL: /en/docs/api/v1/integrations/api-keys/delete
Last Updated: 2026-07-30T21:15:30.097Z

## 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/integrations/api-keys

**Delete API key**

Delete an API key by ID. This action cannot be undone and will immediately revoke access for any integrations using this key.

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

**Query parameters:**

| Name | Type | Required | Description |
|---|---|---|---|
| `id` | string (uuid) | Yes | The ID of the API key to delete |

**Responses:**

- `200` - API key deleted successfully
  - `success` (boolean)
  - `data` (object)
    - `id` (string (uuid)): The ID of the deleted API key
- `400` - Bad Request - API key ID is required
  - `error` (string, required)
- `401` - Unauthorized
- `403` - Forbidden - Admin role required
- `404` - API key not found
  - `error` (string, required)
- `500` - Internal server error

**Code samples:**

cURL:

```bash
curl -X DELETE "https://app.orbiqhq.com/api/v1/integrations/api-keys?id=key-123" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json"
```

