Stripe
Tools
Name & Description | Type |
---|---|
STRIPE_CANCEL_SUBSCRIPTIONCancels a customer's active Stripe subscription at the end of the current billing period, with options to invoice immediately for metered usage and prorate charges for unused time. | action |
STRIPE_CREATE_CUSTOMERCreates a new customer in Stripe, required for creating charges or subscriptions; an email is highly recommended for customer communications. | action |
STRIPE_CREATE_INVOICECreates a new draft Stripe invoice for a customer; use to revise an existing invoice, bill for a specific subscription (which must belong to the customer), or apply detailed customizations. | action |
STRIPE_CREATE_PAYMENT_INTENTCreates a Stripe paymentintent to initiate and process a customer's payment; using `application fee amount` for a connected account requires the `Stripe-account` header. | action |
STRIPE_CREATE_PRICECreates a new Stripe price for a product, defining its charges (one-time or recurring) and billing scheme; requires either an existing `product` id or `product data`. | action |
STRIPE_CREATE_PRODUCTCreates a new product in Stripe, encoding the request as `application/x-www-form-urlencoded` by flattening nested structures. | action |
STRIPE_CREATE_REFUNDCreates a full or partial refund in Stripe, targeting either a specific charge id or a payment intent id. | action |
STRIPE_CREATE_SUBSCRIPTIONCreates a new, highly configurable subscription for an existing Stripe customer, supporting multiple items, trials, discounts, and various billing/payment options. | action |
STRIPE_DELETE_CUSTOMERPermanently deletes an existing Stripe customer; this irreversible action also cancels their active subscriptions and removes all associated data. | action |
STRIPE_LIST_CUSTOMER_PAYMENT_METHODSRetrieves a list of payment methods for a given customer, supporting type filtering and pagination. | action |
STRIPE_LIST_PAYMENT_LINKSRetrieves a list of payment links from Stripe, sorted by creation date in descending order by default. | action |
STRIPE_LIST_REFUNDSLists Stripe refunds, sorted by creation date descending (newest first), with optional filtering by charge or payment intent and pagination support. | action |
STRIPE_LIST_SHIPPING_RATESRetrieves a list of Stripe shipping rates, filterable by active status, creation date, and currency; useful for managing or displaying shipping options. | action |
STRIPE_LIST_TAX_RATESRetrieves a list of tax rates, which are returned sorted by creation date in descending order. | action |
STRIPE_RETRIEVE_CHARGERetrieves full details for an existing Stripe charge using its unique id. | action |
STRIPE_RETRIEVE_PAYMENT_INTENTRetrieves a paymentintent by its id; `client secret` is required if a publishable API key is used. | action |
STRIPE_RETRIEVE_REFUNDRetrieves details for an existing Stripe refund using its unique `refund id`. | action |
STRIPE_SEARCH_CUSTOMERSRetrieves a list of Stripe customers matching a search query that adheres to Stripe's search query language. | action |
STRIPE_UPDATE_PAYMENT_INTENTUpdates a Stripe paymentintent with new values for specified parameters; note that if `currency` is updated, `amount` might also be required, and certain updates (e. | action |
STRIPE_UPDATE_SUBSCRIPTIONUpdates an existing, non-canceled Stripe subscription by its id, ensuring all referenced entity ids (e. | action |
STRIPE_CONFIRM_PAYMENT_INTENTConfirms a Stripe paymentintent to finalize a payment; a `return url` is necessary if the payment method requires customer redirection. | action |
STRIPE_LIST_CHARGESRetrieves a list of Stripe charges with filtering and pagination; use valid cursor ids from previous responses for pagination, and note that charges are typically returned in reverse chronological order. | action |
STRIPE_LIST_COUPONSRetrieves a list of discount coupons from a Stripe account, supporting pagination via `limit`, `starting after`, and `ending before`. | action |
STRIPE_LIST_CUSTOMERSRetrieves a list of Stripe customers, with options to filter by email, creation date, or test clock, and support for pagination. | action |
STRIPE_LIST_INVOICESRetrieves a list of Stripe invoices, filterable by various criteria and paginatable using invoice id cursors obtained from previous responses. | action |
STRIPE_LIST_PAYMENT_INTENTSRetrieves a list of Stripe paymentintents, optionally filtered and paginated using paymentintent ids as cursors. | action |
STRIPE_LIST_PRODUCTSRetrieves a list of Stripe products, with optional filtering and pagination; `starting after`/`ending before` cursors must be valid product ids from a previous response. | action |
STRIPE_LIST_SUBSCRIPTIONSRetrieves a list of Stripe subscriptions, optionally filtered by various criteria such as customer, price, status, collection method, and date ranges, with support for pagination. | action |
STRIPE_LIST_TAX_CODESRetrieves a paginated list of globally available, predefined Stripe tax codes used for classifying products and services in Stripe tax. | action |
STRIPE_RETRIEVE_BALANCERetrieves the complete current balance details for the connected Stripe account. | action |
STRIPE_RETRIEVE_CUSTOMERRetrieves detailed information for an existing Stripe customer using their unique customer id. | action |
STRIPE_RETRIEVE_SUBSCRIPTIONRetrieves detailed information for an existing Stripe subscription using its unique id. | action |
STRIPE_UPDATE_CUSTOMERUpdates an existing Stripe customer, identified by customer id, with only the provided details; unspecified fields remain unchanged. | action |
STRIPE_STRIPE_CHARGE_FAILED_TRIGGERTriggered when a direct charge fails in Stripe's legacy Charges API. | trigger |
STRIPE_STRIPE_CHECKOUT_SESSION_COMPLETED_TRIGGERTriggered when a checkout session is completed in Stripe. | trigger |
STRIPE_STRIPE_INVOICE_PAYMENT_SUCCEEDED_TRIGGERTriggered when an invoice payment is successful in Stripe. | trigger |
STRIPE_STRIPE_PAYMENT_FAILED_TRIGGERTriggered when a payment intent fails in Stripe. | trigger |
STRIPE_STRIPE_PRODUCT_CREATED_TRIGGERTriggered when a product is created in Stripe. | trigger |
STRIPE_STRIPE_SUBSCRIPTION_ADDED_TRIGGERTriggered when a subscription is added in Stripe. | trigger |
STRIPE_STRIPE_SUBSCRIPTION_DELETED_TRIGGERTriggered when a subscription is deleted in Stripe. | trigger |