#backenddev_55020
1 messages · Page 1 of 1 (latest)
Your webhook endpoint should be a POST route/endpoint that we send event payloads to. You configure those endpoints in the Dashboard
oh you mean when we create a Stripe account in the beginning , we need to configure the webhook endpoints ? and use the same endpoint in our code ?
I'd recommend just reading through this doc which explains the core concept: https://stripe.com/docs/webhooks
But yes you need to configure the endpoints on your account via Dashboard or API: https://stripe.com/docs/webhooks#register-webhook
@tired helm , i have to expose the webhook endpoint to stripe .. so it must be a reachable on public ip right ?
Yes the endpoint needs to be reachable publicly. If security is a concern then you can enforce signature signing to ensure the requests are actually from us: https://stripe.com/docs/webhooks#verify-official-libraries
yes correct, i will be using that secured option ..
Great! Let me know if you've any questions about that
i will read couple more documents and come back if have more questions ... Thanks for your guidance .. Highly appreciate your help ..