#alcapone-refund
1 messages · Page 1 of 1 (latest)
Hi there, have you checked the refund API? https://stripe.com/docs/api/refunds
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hello Jack, I was reading it before but I'm not sure can be suitable. I saw that I can enter a different amount so I presume I can set it in base of my "Cancellation Policy". I want this to be automated without human interaction
Can you explain more about your cancellation policy?
I have a website like Airbnb. I'm not sure if you are familiar with it. the host can choose 3 different cancellation policies. When a guest books I'm receiving the payment (+ guest commission) and I release the payment after 24h (- host commission) to the host.
if the guest cancels for example 24 before the check-in he has to pay a fee...how can implement it and automate with stripe?
there will be: a not refundable policy, a 50% and another one
It sounds like a auth-and-capture scenario to me.
- You ask the guest to authorize the amount (room rental + commission)
- When guest cancel the the booking, you can do a partial capture -> the remaining money will be automatically refunded to the guest
- When the booking becomes non-refundable, you then do a full capture.
https://stripe.com/docs/payments/capture-later I'd recommend this doc to you