#blablu
1 messages ยท Page 1 of 1 (latest)
apologies for my messed up sentence pls let me know if its not clear
Hi ๐ the list of reasons that a Dispute can have can be found here in our API ref:
https://stripe.com/docs/api/disputes/object#dispute_object-reason
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
hmm, what I am trying to ask is that is there solid one way movement like dispute_created-> dispute_update-> dispute_closed-> funds_withdrawn? or could the clients bank take the funds right when the dispute is created?
I believe this is shown in the diagram here, it looks like the cardholder's bank retrieves the funds up front:
https://stripe.com/docs/disputes/how-disputes-work
okay thanks! how do I retrieve dispute fee from stripe?
because dispute object doesnt have the fee attribute
I believe the fee information for those would be stored with the associated Balance Transaction object:
https://stripe.com/docs/api/disputes/object#dispute_object-balance_transactions
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Understood. Thanks a lot for your help Mr.Meeseeks ๐
another question. sorry for adding up to the thread. which API call is associated with this?
There isn't an API call associated with it. I believe those may generate dashboard notifications in the Stripe dashboard, but the early fraud warnings section below that goes into more detail about the programatic approach for being made aware of those.
You can use a webhook endpoint to listen for this event and the one below it relating to early fraud warnings.
https://stripe.com/docs/api/events/types#event_types-radar.early_fraud_warning.created
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 thanks much!
Any time!