# Delete certification

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

## 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/certifications/{id}

**Delete certification**

Delete a certification permanently. This action cannot be undone. The certification and its associated  files (document and badge) will be removed from the system.

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

**Path parameters:**

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

**Responses:**

- `200` - Certification deleted successfully
  - `success` (boolean)
  - `data` (object)
    - `id` (string (uuid)): ID of the deleted certification
- `400` - Bad Request - invalid certification ID
  - `success` (boolean)
  - `error` (string)
- `401` - Unauthorized
  - `success` (boolean)
  - `error` (string)
- `404` - Certification not found
  - `success` (boolean)
  - `error` (string)
- `405` - Method not allowed
  - `success` (boolean)
  - `error` (string)
- `500` - Internal server error
  - `success` (boolean)
  - `error` (string)

**Code samples:**

cURL:

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

