Stripe AttachMethod

Stripe AttachMethod

Certified

Attach PaymentMethod to customer

Attaches an existing PaymentMethod to a customer using its IDs. Returns the attached PaymentMethod payload and type.

yaml
type: io.kestra.plugin.stripe.payment.AttachMethod

Attach a card to a customer

yaml
id: attach_pm
namespace: company.team

tasks:
  - id: attach_pm
    type: io.kestra.plugin.stripe.payment.AttachMethod
    apiKey: "{{ secret('STRIPE_API_KEY') }}"
    paymentMethodId: pm_123
    customerId: cus_456
Properties

Stripe API Key

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

Customer ID to attach to

PaymentMethod ID to attach

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

Customer ID attached to

Raw PaymentMethod payload

Full PaymentMethod object converted to a map

Attached PaymentMethod ID