#sagar.sonar-payouts
1 messages · Page 1 of 1 (latest)
sorry, but where did I get this request id?
req_MIF3okf6xK4WB5
it's not possible to create an external account for a Standard account via API
you'll need to create it via the Dashboard like what the error message mentions
$account_data = $stripe->customers->createSource(
'cus_LJqWX5k71SRpAi',
['bank_account' => [
'country' => 'US',
'currency' => 'USD',
'account_holder_name' => 'Arka Singh',
'account_holder_type' => 'individual',
'routing_number' => '110000000',
'account_number' => '000123456789',
]
]
);
firstly I am using this to create source for users with stripe_id, still, It is considered an external account?
Is there any way to register a bank account via API? I don't want it with a manual process.
you can do it if it's for collecting payments from customer. It's not possible to create a bank account via API for payouts for a Standard account