๐Ÿš€ New Stripe Adaptor Released!

Dear Community,

Weโ€™re thrilled to announce the release of the new Stripe Adaptor v1.0.0, designed to enable you make payments much easier by unlocking global commerce with secure workflows.

You can read the full details of the new Adaptor here.

:wrench: Features

  1. Generic HTTP Request API

Write flexible jobs that interact with any Stripe API resource.

  • Make a POST request to Stripe to create a payment intent
http.post(
  '/payment_intents',
  {},
  {
    query: {
      amount: 10000,
      currency: 'usd',
    },
  }
);
  • Make a GET request to Stripe to get all invoices
http.get('/invoices')

  1. ** List Request API**

Write jobs to list all items from specific resources in Stripe.

list('customers', {limit:3});

  1. ** Get Request API**

Write jobs to list single items from specific resources in Stripe.

get('customers','cus_SthTl85l20LRJj');

:puzzle_piece: Example Workflow

Hereโ€™s a real-world example from our Solutions Engineer โ€” a workflow that retrieves all customers from Stripe, and updates GoogleSheets with the customer details.

:white_check_mark: Try It Out

Explore the adaptor now at app.openfn.org

Need help? Book a free demo

Youโ€™re entitled to a 2-hour free session with our Solutions Engineer to help build your first integration.

Happy automating!

โ€” The OpenFn Team