#ashishchicmic
1 messages · Page 1 of 1 (latest)
Hey there, if you're using Standard connect the account holder does have keys they can access but you as the platform should not use those. Instead, you can use the Stripe-Account header to create/inspect payouts for a given connected account:
https://stripe.com/docs/connect/authentication
i am using custom connect account
i want to initiate a payout to stripe custom connect account
Sure, then if creating manual payouts you'd do so like we document here:
https://stripe.com/docs/connect/manual-payouts#regular-payouts
curl https://api.stripe.com/v1/payouts \
-u "sk_test_123:" \
-H "Stripe-Account: acct_123abc123" \
-d amount=10000 \
-d currency=usd