# Eliminar llamada

**DELETE** `/v2/delete-call/{call_id}`

Elimina permanentemente el registro de una llamada, incluyendo su transcripción, grabación y análisis. Esta acción no puede deshacerse.

***

## Parámetros de ruta

| Campo     | Tipo   | Requerido | Descripción                                                              |
| --------- | ------ | --------- | ------------------------------------------------------------------------ |
| `call_id` | string | Sí        | ID de la llamada a eliminar. Ejemplo: `119c3f8e47135a29e65947eeb34cf12d` |

***

## Cuerpo de la solicitud

No requiere cuerpo.

***

## Respuesta — 204 No Content

La llamada fue eliminada exitosamente. No se devuelve cuerpo en la respuesta.

***

## Ejemplo de solicitud

```bash
curl --request DELETE \
     --url https://calls.anunzi.net/v2/delete-call/119c3f8e47135a29e65947eeb34cf12d \
     --header 'Authorization: Bearer TU_API_KEY'
```

***

## Códigos de estado

| Código | Descripción                                              |
| ------ | -------------------------------------------------------- |
| `204`  | Llamada eliminada exitosamente. Sin cuerpo de respuesta. |
| `400`  | Formato de solicitud inválido.                           |
| `401`  | API Key ausente o inválida.                              |
| `422`  | La llamada no existe bajo tu API Key.                    |
| `500`  | Error interno del servidor.                              |

***

> ⚠️ Esta operación es **permanente e irreversible**. Una vez eliminada, no es posible recuperar la transcripción, grabación ni ningún dato asociado a la llamada.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.anunzi.net/api-calls/eliminar-llamada.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
