
Stripe AttachMethod
CertifiedAttach PaymentMethod to customer
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.AttachMethodExamples
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
apiKey *Requiredstring
Stripe API Key
Secret key for authenticating with Stripe. Starts with 'sk_' for live/test keys.
customerId *Requiredstring
Customer ID to attach to
paymentMethodId *Requiredstring
PaymentMethod ID to attach
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
customerId string
Customer ID attached to
paymentMethodData object
Raw PaymentMethod payload
Full PaymentMethod object converted to a map
paymentMethodId string
Attached PaymentMethod ID