#op84
1 messages · Page 1 of 1 (latest)
Are you using Connect at all, or just three separate Stripe account you've pointed at the same webhook endpoint?
no connect just bare minimum and 3 separate accounts to one endpoint.. currently.. but i can create 3 as well..
Got it. You can share an endpoint, that's fine, but to tell them apart I'd suggest at least using a query parameter
eg https://example/com/webhooks?account=acct1
then your endpoint can pull that value to know which account it came from and record that in your system and apply the appropriate signing secret for signature verification
sounds like the easiest solution. thanks for help!