#mathers_transfer-error

1 messages ¡ Page 1 of 1 (latest)

rustic brambleBOT
#

👋 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.

willow ingot
#

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

severe wigeon
#

how can i get the request id?, i have the event id

willow ingot
#

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

severe wigeon
#

ok i am checking

#

evt_3PF6f5JApK0ZwDoK14JlKQg9

#

req_yMuyoJ0jeFIgKb

willow ingot
#

yeah that request is completely unrelated, it's a WebhookEndpoint update in the Dashboard

#

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

severe wigeon
#

apologies the two Ids are unrelated

willow ingot
#

all good!

severe wigeon
#

i must be passing the wrong value, weird part is i didnt adjust the code and it was working previously

willow ingot
#

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

severe wigeon
#

thanks