Stripe List

Stripe List

Certified

List Stripe customers

Lists customers with optional email filter and limit. Uses the provided secret key; outputs raw customer maps for further filtering.

yaml
type: io.kestra.plugin.stripe.customer.List

List the first 10 customers

yaml
id: list_customers
namespace: company.team

tasks:
  - id: list_customers
    type: io.kestra.plugin.stripe.customer.List
    apiKey: "{{ secret('STRIPE_API_KEY') }}"
    limit: 10
Properties

Stripe API Key

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

Email filter

If set, returns customers whose email matches the value

Default10

Maximum customers to return

Defaults to 10; Stripe caps apply

Reference (ref) of the pluginDefaults to apply to this task.

SubTypeobject

Customer objects

Each entry is the raw Stripe customer converted to a map

Returned count