ListIntents
List recent PaymentIntents.
Retrieve a list of recent payment intents from Stripe with optional filters.
yaml
type: "io.kestra.plugin.stripe.payment.ListIntents"Examples
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
apiKey *Requiredstring
Stripe API Key
Secret key for authenticating with Stripe. Starts with 'sk_' for live/test keys.
customer string
Optional Customer ID to filter PaymentIntents
limit integerstring
Maximum number of PaymentIntents to retrieve
Outputs
count integer
 Default 
0Number of payment intents returned
paymentIntents array
 SubType object
List of payment intents as raw JSON maps