Manage your Stripe billing from workflows: customers, subscriptions, invoices, payments, refunds, products, prices, and account balance.
Authentication: API Key. Provide your Stripe secret key when connecting.
Actions
Customers
| Action | Description | Key Inputs | Key Outputs |
|---|---|---|---|
| List Customers | Returns all customers | Email filter (optional) | customers array |
| Get Customer | Retrieve by ID | Customer ID | customer object |
| Create Customer | Create new customer | Email, name | customerId, customer |
| Update Customer | Update fields | Customer ID, updated fields | customer |
| Search Customers | Find by query | Search query | customers array |
Subscriptions
| Action | Description | Key Inputs | Key Outputs |
|---|---|---|---|
| List Subscriptions | Returns subscriptions | Customer ID (optional), status | subscriptions array |
| Get Subscription | Retrieve by ID | Subscription ID | subscription object |
| Create Subscription | Start a subscription | Customer ID, price ID | subscriptionId |
| Update Subscription | Modify subscription | Subscription ID, updated fields | subscription |
| Cancel Subscription | End a subscription | Subscription ID, cancel at period end | subscription |
Invoices
| Action | Description | Key Inputs | Key Outputs |
|---|---|---|---|
| List Invoices | Returns invoices | Customer ID, status | invoices array |
| Get Invoice | Retrieve by ID | Invoice ID | invoice object |
| Create Invoice | Create new invoice | Customer ID | invoiceId |
| Send Invoice | Send to customer | Invoice ID | invoice |
| Add Invoice Item | Add line to invoice | Invoice ID, price ID, quantity | invoiceItemId |
Payments
| Action | Description | Key Inputs | Key Outputs |
|---|---|---|---|
| Create Payment Intent | Create a payment | Amount (in cents), currency | paymentIntentId, clientSecret |
| Confirm Payment Intent | Confirm a payment | Payment Intent ID | paymentIntent |
| List Payment Intents | Returns payment intents | Customer ID (optional) | paymentIntents array |
| Create Charge | Direct charge | Amount, currency, customer ID | chargeId |
| List Charges | Returns charges | Customer ID | charges array |
Refunds
| Action | Description | Key Inputs | Key Outputs |
|---|---|---|---|
| Create Refund | Refund a payment | Charge or Payment Intent ID, amount | refundId |
Products and Prices
| Action | Description | Key Inputs | Key Outputs |
|---|---|---|---|
| Create Product | Create a product | Name, description | productId |
| Create Price | Create a price | Product ID, unit amount, currency, recurring interval | priceId |
Balance
| Action | Description | Key Outputs |
|---|---|---|
| Retrieve Balance | Get current Stripe balance | available, pending balances by currency |
Was this page helpful?