#bhaskars99-ach
1 messages · Page 1 of 1 (latest)
curl https://api.stripe.com/v1/sources
-u sk_test******MQrC:
-d "customer"="cus_LgHzDV5MrXKHqE"
-d "original_source"="ba_1KyvJtDv2G1UkoSogzoZ0vdo"
-d "usage"="reusable"
-H "Stripe-Account: {{CONNECTED_STRIPE_ACCOUNT_ID}}"
Response
{
"error": {
"message": "Source sharing for type ach_debit is not supported.",
"param": "type",
"type": "invalid_request_error"
}
} (edited)
is this what you are looking for?
Not exactly, but this should work!
So the issue is that we don't support cloning Bank Account objects (ba_xxx) as Sources - you'll want to follow the Token cloning flow instead: https://stripe.com/docs/connect/cloning-customers-across-accounts#creating-tokens
thanks.