#kamon-identity-events
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- kamon000, 6 days ago, 16 messages
@torpid fable can you give me an example VerificationSession id so I can look at it?
kamon-identity-events
Here's one from one of my tests:
vs_1OZG7ZKq0PhFh4ntO281CReC
You can see that the events are there, but not attached to a webhook?
OH
You know what...I wonder if this is an issue.
That webhook is the "Connect" type
yeah that was what I was expecting
If you create the VS on your platform account the the Events will be sent to your Account WebhookEndpoint
Gotcha, that makes sense.
Can I update this webhook in Stripe to subscribe to both connect and normal events?
no those would be 2 completely separate WebhookEndpoints
Gotcha, will they have the same signing secret?
And can I handle them on the same API endpoint?
no they will have different signing secret since they are separate WebhookEndpoint. And you can use the same URL if that's what you meant by API though we usually recommend handling the two separately since they process different context
That makes sense.
If for some reason I were to have the webhooks have the same URL, is there a way to determine which signing secret to use?
because you construct the stripe event w/ the stripe webhook secret, so I'm wondering how to know which secret to use before that event is constructed
add a query parameter to the URL to distinguish them in your code