#hemal_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1302880060117876746
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- hemal_api, 4 days ago, 17 messages
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_CpJVji7Qn2YVoA
You should specify a stripe_account in the payout creation request.
By specifying a stripe_account, you are telling Stripe that you want to make an API call on behalf of a connected account. You can refer to this doc to learn more about making API request for connected account (https://stripe.com/docs/connect/authentication)
let me try
well that worked, now I am getting error of insufficient balance, how can I add balance and use it? (test mode)
I've retrieved balance using "stripe.balance.retrieve" and got this response
{
object: 'balance',
available: [ { amount: 19221696, currency: 'usd', source_types: [Object] } ],
connect_reserved: [ { amount: 0, currency: 'usd' } ],
livemode: false,
pending: [ { amount: 0, currency: 'usd', source_types: [Object] } ]
}
why I am getting an error of insufficient balance, as I've sufficient balance.
https://docs.stripe.com/testing#available-balance creat charges with these test cards
What's the request ID again?
Also to confirm, did you create the charges on the platform?
didn't created charges. but I've purchased a few items from my App and added static amount in my back-end and it is visible in the gross income, before that it was 0.
req_91nYpMYVerwQKM
will it work?
payout req ID: req_dBzhgHaWosSnas
Did you transfer the funds to the connected account?
Alternatively you might want to charge the connected accounts with those test cards
is it necessary? like, without transferring to the connected account, can I transfer the money to the external bank account directly (of connected account)?
in-short I just want to skip the step of transferring money to stripe's connected account, can I achieve that?