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.
Features
- Generic HTTP Request API
Write flexible jobs that interact with any Stripe API resource.
- Make a
POSTrequest to Stripe to create a payment intent
http.post(
'/payment_intents',
{},
{
query: {
amount: 10000,
currency: 'usd',
},
}
);
- Make a
GETrequest to Stripe to get all invoices
http.get('/invoices')
- ** List Request API**
Write jobs to list all items from specific resources in Stripe.
list('customers', {limit:3});
- ** Get Request API**
Write jobs to list single items from specific resources in Stripe.
get('customers','cus_SthTl85l20LRJj');
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.
