#alessandromontanari_paypal-disputes-testing
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/1354845692438515774
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
HI ๐
You can use the card numbers and example evidence we display here to simulate disputes. Unfortunately, we don't have anything specific to PayPal that I know of.
yeah, I've simulated dispute with a card, but I need a real example of Dispute with paypal (for example, there are more than Dispute fees as mentioned at https://docs.stripe.com/payments/paypal/disputed-payments#fees) due an implementation for accounting report (where this type of data are essentials)
Oh wait a sec, the cURL Command we display there should return the dispute object you need
curl https://api.stripe.com/v1/payment_intents \
-u "sk_test_51JticYIlCeH6bP8RQmkScSIBs4Gg870ecW5lRX02YE1O3m7HpPbUHfPTc22MS98LXEaXwuK9yzp8L6cDd3O4qs02002fcAA5TZ:" \
-d amount=1099 \
-d currency=eur \
-d "payment_method_types[]"=paypal \
-d "payment_method_data[type]"=paypal \
--data-urlencode "payment_method_data[billing_details][email]"="dispute_not_received@example.com"
In the data returned there are no info about fees for dispute or balance transaction
Can you share an API request ID for this? It will start with req_
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Thanks, taking a look
You still need to complete the Payment
The dispute cannot be created until the Payment Intent has been confirmed
It might actually be easier to use a checkout session and just provide the test scenario emails for the customer email
Got it! I've completed a payment with paypal with email dispute_not_received@example.com and a new dispute has been created for that payment
And how can I achieve a dispute where I won?
Got it! Thanks
Happy to help ๐