🧰 DLQ y reintentos del webhook

Mira tus webhooks fallidos y reinténtalos con backoff exponencial.

1) Consultar DLQ

Lista los webhooks fallidos pendientes de reintento.

GET /api/webhook-dlq?instanceId=123&token=TOKEN&limit=50

Campos: endpoint, last_error, next_retry_at, attempts, status, created_at.

2) Reintentar manual

POST /api/webhook-dlq/ID/replay
Content-Type: application/json

{ "instanceId": 123, "token": "TOKEN" }

Si falla de nuevo, se incrementa attempts y se programa un nuevo next_retry_at con backoff (2,4,8,16,... máx 60 min).