Discord
Celebrate paid invoices in a Discord channel
Same as the Slack recipe, for teams on Discord. Includes a celebratory emoji because money landing is worth marking.
4 min setup Trigger:
invoice.paid easyworks with Direct webhookworks with Zapierworks with Make.com
Setup steps
- In Discord: server settings -> Integrations -> Webhooks. Create one for the target channel. Copy the URL.
- In ClientNest365: Settings -> Webhooks -> + New endpoint. Target = the Discord webhook URL.
- Subscribe to event: invoice.paid
- Test by marking a draft invoice paid. Confirm Discord shows the message.
Payload fields you'll use
invoice.numberinvoice.total_centsinvoice.currencyclient.name
Where to wire it in ClientNest365
Open your workspace at /app/settings/webhooks. Click + New endpoint. Paste the target URL from your automation platform (Zapier, Make, n8n) or the third-party tool's native webhook URL. Subscribe to the invoice.paid event. Save. Your endpoint secret is shown once at creation; copy it now if you plan to verify the HMAC signature on the receiving end.
Verifying the signature
Each webhook POST carries an X-CN-Signature header. The value is sha256=<hmac> where the HMAC is computed over the raw request body using your endpoint secret. Compare with constant-time equality. Reject mismatches.