#Meet Shah
1 messages · Page 1 of 1 (latest)
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_YDNAb7vuFUvGUr
The customer (cus_O8PmUlTXXZTKQo) doesn't have active sources and that's they the API request wasn't suceeded. I noticed that you have attached payment_methods to this customer. Perhpas you want to clone payment methods directly instead? (https://stripe.com/docs/payments/payment-methods/connect#cloning-payment-methods)
I want to clone customer with payment method is there any way?
you can only clone the PaymentMethod, you need to create a new customer on the connected account to attach the cloned PaymentMethod.
My use case is customers will only enter payment method once
We want to use standard account
We may have multiple standard account. don't want that our customer to enter payment method multiple times
once they enter payment method. We will automatically charge them and send invoice
so what do you suggest as development which process will be suitable.
have you gone through https://stripe.com/docs/payments/payment-methods/connect#cloning-payment-methods? Cloning PaymentMethods is what you want and it's described in that guide
Yeap, But the problem is we also want to create or assign customer to connect account
so by this
first, I need to create customer with same details in connected account than I clone payment method, right?
please do correct me if I was wrong
i would clone the PaymentMethod first, then create a customer with the same details in the connected account and attach the cloned PaymentMethod at the same time you create the customer : https://stripe.com/docs/api/customers/create#create_customer-payment_method
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.