#khris22963
1 messages · Page 1 of 1 (latest)
you can create an endpoint with the secret key of an account : https://stripe.com/docs/api/webhook_endpoints/create
(note the signing secret is returned, but only once(in the response from creating, never again when calling GET on the object) so make sure to save it)
there's also roles for adding users to a Stripe account : https://stripe.com/docs/payments/account/teams/roles
Wow!
Thank you. That's impressive.
Quick supplementary question then....
If I create the webhook endpoint using the API, presumably I can also query the events sent to it?
I've been doing it all in my own Stripe account so far so obvs I have access to all the logs
not really any way to do that directly but for example you can call https://stripe.com/docs/api/events/list with the same list of types and a date range; depends what the use case really is.
Ok... tbh I'm not sure yet so i'll read the docs and come back to you if needed.
Many thanks. You guys are pretty good, I have to say!