Automatically Send Every Stripe Payment to Discord in Real Time

This n8n workflow watches Stripe for a new payment and automatically post a message to a Discord channel. Set it once and it runs 24/7.

difficulty Beginnersetup 25 minresult A hands-off pipeline where every new Stripe payment is automatically post a message to a Discord channel in Discord.
  1. 1

    Add the Stripe Trigger node

    Start with a Stripe Trigger node — connect your Stripe account with your API key as a credential, then set Events to payment_intent.succeeded. Copy the webhook URL n8n shows and paste it into your Stripe Dashboard under Developers > Webhooks > Add Endpoint. This fires the workflow the moment a new payment arrives.

  2. 2

    Map the fields with a Set node

    Add a Set node after the trigger to shape the data cleanly. Create fields: amount to {{ $json.data.object.amount_received / 100 }} (cents to dollars), email to {{ $json.data.object.receipt_email }}, payment_id to {{ $json.data.object.id }}, and currency to {{ $json.data.object.currency }}. This turns the raw payload into tidy values your destination can use.

  3. 3

    Send it to Discord

    Add an HTTP Request node, set Method to POST, and paste your Discord channel webhook URL (Discord > Channel Settings > Integrations > Webhooks > New Webhook) into the URL field. Set Body Content Type to JSON and add one parameter: key content, value a message built from the Set-node fields.

  4. 4

    Activate and test

    Click Activate in the top-right of the canvas. Trigger a test payment in Stripe, then confirm it appears in Discord. Once it works, you're done — every new payment now flows through automatically.

Frequently asked questions

Do I need any coding skills to set this up?

No. n8n is a visual, drag-and-drop tool. You connect your Stripe and Discord accounts, point the nodes at the right form/sheet/channel, map the fields, and activate. No code required.

Can I filter which payments get sent to Discord?

Yes. Add an `IF` node between the Set node and the HTTP Request node with a condition (for example, only send when an amount is above a threshold or a field equals a value). Wire the TRUE branch to HTTP Request and leave FALSE empty to skip the rest.

Can I send each payment to more than one place at once?

Absolutely. Branch the workflow after the Set node: connect it to multiple destination nodes so the same payment lands in Discord and, say, Slack or a spreadsheet simultaneously.

About this recipe. Recipes on FlowRecipesHub are written for business owners, not developers, and are tested before publishing — how recipes get made. Some ingredient links are affiliate links that cost you nothing — full disclosure.