List recent PaymentIntents.

Retrieve a list of recent payment intents from Stripe with optional filters.

yaml
type: "io.kestra.plugin.stripe.payment.listintents"

List the 5 most recent Payment Intents for a customer

yaml
id: list_payment_intents
namespace: company.team

tasks:
  - id: list_payment_intents
    type: io.kestra.plugin.stripe.payment.ListIntents
    apiKey: "{{ secret('STRIPE_API_KEY') }}"
    limit: 5
    customer: cus_123
Properties

Stripe API Key

Secret key for authenticating with Stripe. Starts with 'sk_' for live/test keys.

Optional Customer ID to filter PaymentIntents

Maximum number of PaymentIntents to retrieve

Default 0

Number of payment intents returned

SubType object

List of payment intents as raw JSON maps