#devil_api
1 messages ¡ Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- devil_api, 1 day ago, 21 messages
- devil_apps-dispute, 4 days ago, 32 messages
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1258088451421765703
đ Have more to share? Add details, code, screenshots, videos, etc. below.
Hello! The status of the Dispute object will change to won or lost depending on the outcome: https://docs.stripe.com/api/disputes/object#dispute_object-status
You can set up a Webhook Endpoint to listen for charge.dispute.closed Events to get programatic notifications when this happens: https://docs.stripe.com/api/events/types#event_types-charge.dispute.closed
The charge.dispute.closed Event will have a created timestamp you can use to know when the Dispute was won or lost: https://docs.stripe.com/api/events/object#event_object-created
aha, so I'd have to create own webhook
and save to db apparently right?
in case I want to "view" that date
Probably, but you can also retrieve Events from the API as needed: https://docs.stripe.com/api/events/retrieve
yeah but there is no option to retrieve only one
based on object id ( let's say payment intent or dispute id )
You would need the Event ID, yeah.