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

# Access profile delete

## Endpoint

`DELETE https://gateway.orkeia.ai/access-profiles/{id}`

## Encabezados

```
authorization:  <tu_token>
```

## Parámetros de Ruta

```json theme={null}
{
  "id": "id del perfil",
}
```

| Nombre | Tipo   | Requerido | Descripción             |
| ------ | ------ | --------- | ----------------------- |
| id     | string | Sí        | ID del perfil de acceso |

## Respuestas

### Response - Éxito

```json response theme={null}
{
  "status": "OK",
  "data": { "id": "string_id"}
}
```

### 500 — Solicitud Incorrecta

```json theme={null}
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
```

### 400 — Error del Cliente

```json theme={null}
{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}
```

## Ejemplo (cURL)

```bash theme={null}
curl -X DELETE "https://gateway.orkeia.ai/access-profile/1"   -H "authorization:  <tu_token>"
```
