#kirubha_14492

1 messages · Page 1 of 1 (latest)

digital daggerBOT
vapid yarrow
#

Could you elaborate? That's not really a question

cerulean mountain
#

my requirement is to migrate payment methods from one connected account to another connected account

#

so i need to create token for cards in old connected account and migrate to new connected accounts

#

I have three params card_id from stripe response,customer_id,stripe_account by using this need to create token

#

$token = \Stripe\Token::create(
[
'card' => 'card_id',
'customer' => 'customer_id'
],
["stripe_account" => 'connected_id']
);

    return $token;
#

is it possible in PHP?

vapid yarrow
#

No that's not possible since each Stripe object, here the Token, will belongs to only 1 Stripe Account.

#

It's only possible to clone over the Customer on a Platform to multiple of its Connected Accounts. Not between Connected Accounts themselves

cerulean mountain
#

there is any possible to migrate only payment methods from Connected Accounts to another Connected Accounts