#kado-kaelan - Endpoint not found
1 messages · Page 1 of 1 (latest)
Can you tell me a bit more about what you are doing when you see that error? Is it from a Stripe call?
i also used the stripe cli to forward request to my local url
i am testing out stripe checkout locally
when payment completes it send a few request to my webhook
found out the problem.
had to add this code
Great to hear!
I do have a follow up questions about stripe checkout
i couldnt find in the docs how to implement free trial with checkout subscriptions
You can set that here https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-subscription_data-trial_end
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Or in the trial_period_days param under it
okay got it
and would i have to take care of any of the set up intent logic or does stripe checkout take care of it
What do you want to do with setup intents here?
I am not sure if payment links can save payment info
originally i had a custom subscription integration with free trial and i had to save their set up intent to pay pater
im not doing payment link im using the stipe hosted checkout
Oh sorry, I had you confused with another thread. Yes, the Checkout Session will take their payment information.
got it thanks!