#mathers_transfer-error
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/1240443561934327901
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
mathers_transfer-error
Hey @severe wigeon can you share an exact request id req_123 from the error and your exact code as it was truncated
how can i get the request id?, i have the event id
The Event is unrelated. You receive an Event, you then write code that creates a Transfer, that request is failing, I need the request id of that failure. It's usually in the error message, or in PHP you need to properly handle errors to show those, see https://stripe.com/docs/error-handling
But if you don't have it, then I can figure it out from the Event id yes
yeah that request is completely unrelated, it's a WebhookEndpoint update in the Dashboard
Okay example request on your account https://dashboard.stripe.com/logs/req_W4Z2mYhO2I9Zit
You are trying to create a Transfer to send $6 from your platform to a connected account. You are passing source_transaction which ties the funds to that original Charge. That payment was for $1.39 so you get a clear error that you can't do this
apologies the two Ids are unrelated
all good!
ok so the scenario is i create a setup intent and charge is done, and from that charge and the orignal amount i make a transfer to 3 different connected accounts from the platform account
i must be passing the wrong value, weird part is i didnt adjust the code and it was working previously
yeah your $fees in your code is 600 ($6) for example but that Charge is for $1.39 so you are mixing things up I think
i will have to go through it carefully i take it
thanks