Lista los webhook endpoints de la cuenta
GET
/v1/client/webhook-endpoints
const url = 'https://api.mailerdash.com/v1/client/webhook-endpoints';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.mailerdash.com/v1/client/webhook-endpoints \ --header 'Authorization: Bearer <token>'Webhooks a nivel cuenta (modelo Stripe/Resend). JWT-only: requiere sesión de cliente con la feature ‘webhooks’. La respuesta NUNCA incluye el secret (solo se muestra al crear/rotar).
Authorizations
Sección titulada «Authorizations »Responses
Sección titulada « Responses »Array de endpoints (sin secret)