#tronking55
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- tronking55, 21 minutes ago, 10 messages
- tronking55, 14 hours ago, 3 messages
Transfers API can be used to transfer funds from platform to connected account: https://stripe.com/docs/api/transfers/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Okay, @tranquil gate @wheat garnet
Is there any sample code (frontend+backend) to transfer money from one stripe account to the others?
I don't thnk frontend code is needed for transfer
I believe river has already shared with you the API, have you tried it out?
const stripe = require('stripe')('sk_test_51O5VOKGaAOMRNFzm0k5WIPJqHQtkLiSK1gQRGaSy9D496mcghjHVSM9n9eD9EUuSZOJHcpIrKdeiBpebVKFcOabC00MLgVOQj2');
const transfer = await stripe.transfers.create({
amount: 400,
currency: 'usd',
destination: 'acct_1MTfjCQ9PRzxEwkZ',
transfer_group: 'ORDER_95',
});
Yes, but I'm wondering how to get ID of a connected stripe account.