#divya.shalini.ics
1 messages · Page 1 of 1 (latest)
are you following a guide for this?
dispute id: "dp_1NaJacHdtz9jEBQSQNHfye0f"
Yeah. I am following through it:-
https://stripe.com/docs/testing#fraud-prevention
This step lays out how you can provide evidence to win or lose
https://stripe.com/docs/testing#evidence
👍
What would be the index key?
Eg:-
curl https://api.stripe.com/v1/disputes/{{DISPUTE_ID}}
-u sk_test_tR3PYbcVNZZ796tH88S4VQ2u
-d "evidence[customer_email_address]"="email@example.com"
-d "evidence[shipping_date]"=7/2/2023
-d "evidence[shipping_documentation]"="{{FILE_ID}}"
Index key: evidence[customer_email_address]
Value: email@example.com
Any random text should work
https://stripe.com/docs/disputes/api
I think there should be specific index/key/flag/parameter for winning/losing evidence
Can you please help me, to form a example of winning evidence?
From Responding to disputes using the API?
I'd recommend carefully reading the docs as it tells you exactly what you need
https://stripe.com/docs/disputes/api#:~:text=If you’re only interested in submitting a single file or a large amount of plaintext as evidence%2C use uncategorized_text or uncategorized_file. However%2C fill in as many fields as possible so you have the best chance at overturning a dispute.
https://stripe.com/docs/api/disputes/update#update_dispute-evidence-uncategorized_text
In order to win, you need to pass winning_evidence as text to evidence.uncategorized_text when updating the dispute
https://stripe.com/docs/api/disputes/update#update_dispute-evidence-uncategorized_text
Thank you so much for the reponse.