papaguy
Sep 14, 2024
Q: Stripe with Invoice/Receipt
Hi, Is it possible that you adapt the Stripe Integration in a way, that after the payment is done on TidyCal that the invoice is created aswell?
e.g. stripe.checkout.Session.create(
mode="payment",
invoice_creation={"enabled": True},
line_items=[{"price": "{{ONE_TIME_PRICE_ID}}", "quantity": 1}],
success_url="https://example.com",
cancel_url="https://example.com",
)
This would make life easier, as a correct Invoice will be created in Stripe aswell. Else we only have it as transaction with receipt, which is not valid for tax reasons.
Share
Helpful?
Log in to join the conversation