Stripe

Payment Platform

Integrate the Stripe API with the Formatting API

Setup the Stripe API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Stripe and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Custom Webhook Events from Stripe API
Stripe + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Custom Webhook Events from Stripe API
Stripe + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Custom Webhook Events from Stripe API
Stripe + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Custom Webhook Events from Stripe API
Stripe + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Custom Webhook Events from Stripe API
Stripe + Formatting
 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
Try it
Canceled Subscription from the Stripe API

Emit new event for each new canceled subscription

 
Try it
New Abandoned Cart from the Stripe API

Emit new event when a customer abandons their cart.

 
Try it
New Customer from the Stripe API

Emit new event for each new customer

 
Try it
New Dispute from the Stripe API

Emit new event for each new dispute

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Cancel a Payment Intent with the Stripe API

Cancel a payment intent. Once canceled, no additional charges will be made by the payment intent and any operations on the payment intent will fail with an error. For payment intents with status=requires_capture, the remaining amount_capturable will automatically be refunded. See the docs for more information

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Cancel Or Reverse a Payout with the Stripe API

Cancel or reverse a payout. A payout can be canceled only if it has not yet been paid out. A payout can be reversed only if it has already been paid out. Funds will be refunded to your available balance. See the docs for more information

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

Overview of Stripe

With Stripe, you can easily accept payments online. Stripe provides a simple
and powerful way to accept payments over the internet. With Stripe, you can
easily

  • Accept payments from major credit and debit cards
  • Process payments in over 130 currencies
  • Set up recurring billing
  • Accept Apple Pay, Google Pay, and other alternative payment methods
  • And much more!

Connect Stripe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import stripe from 'stripe'

export default defineComponent({
  props: {
    stripe: {
      type: "app",
      app: "stripe",
    }
  },
  async run({steps, $}) {
    const client = stripe(this.stripe.$auth.api_key)

    return await client.accounts.list({ limit: 1 })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})