Workflows / Stripe / payment.intent.succeeded

Stripe Payment Success Notification to Slack & Email

Use the Stripe integration by MagicBell to setup a workflow when payment.intent.succeeded triggers in Stripe.

Connect Stripe to MagicBell to receive events and trigger workflows. This guide uses the MagicBell CLI.

Add the Stripe integration

Save your Stripe webhook signing secret in MagicBell. See Stripe webhooks.

magicbell integration save_stripe \
  --data '{"webhook_signing_secret":"whsec_xxx"}'

Copy the ID from the response and use it to build your webhook URL:

https://api.magicbell.com/v2/integrations/stripe/webhooks/incoming/{id}

Setup the webhook

Add a workflow

Create a workflow that triggers automatically when Stripe sends this event.

Workflow key

Use this key to trigger the workflow when Stripe sends a payment.intent.succeeded:

integration.stripe.payment_intent.succeeded

Example workflow

Confirm successful payment to customer.

{
  "key": "integration.stripe.payment_intent.succeeded",
  "steps": [
    {
      "command": "broadcast",
      "input": {
        "content": "Your payment of ${{payload.data.object.amount}} has been processed successfully. Thank you!",
        "recipients": [
          {
            "external_id": "{{payload.data.object.customer}}"
          }
        ],
        "title": "Payment successful"
      }
    }
  ]
}

Save with the CLI

Use the MagicBell CLI to save this workflow to your project. You can also use the Workflows API endpoint instead.

magicbell workflow save \
  --data '{"key":"integration.stripe.payment_intent.succeeded","steps":[{"command":"broadcast","input":{"content":"Your payment of ${{payload.data.object.amount}} has been processed successfully. Thank you!","recipients":[{"external_id":"{{payload.data.object.customer}}"}],"title":"Payment successful"}}]}'

Event payload

Sample payload for the payment.intent.succeeded event. Use liquid templates to access fields in your workflow.

{
  "api_version": "2023-10-16",
  "created": 1694109501,
  "data": {
    "object": {
      "amount": 2000,
      "amount_received": 2000,
      "created": 1694109501,
      "currency": "usd",
      "customer": "cus_Na6dX7aXxi11N4",
      "description": "Payment for Order #12345",
      "id": "pi_1NqIhRLkdIwHu7ixSsC5De8f",
      "livemode": false,
      "object": "payment_intent",
      "payment_method": "pm_1NqIhRLkdIwHu7ixTtD6Ef9g",
      "receipt_email": "customer@example.com",
      "status": "succeeded"
    }
  },
  "id": "evt_1NqIhSLkdIwHu7ixRrB4Cd7e",
  "livemode": false,
  "object": "event",
  "type": "payment_intent.succeeded"
}
View all Stripe workflows →