Resend Webhook
POST
/api/webhooks/resend
const url = 'https://example.com/api/webhooks/resend';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/webhooks/resendReceive Resend email lifecycle webhooks.
Verifies the Svix signature, looks up email metadata from Redis, and forwards the event to Matomo for analytics tracking.
Returns:
200 on success. Error paths raise via raise_ui_http and the
global FastAPI handler in app.py wraps them into the
canonical envelope: 400 on invalid signature, 503 if webhook
service is not configured, 500 on processing failure.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
example