For Stripe, I need to have a way to create a new onboarding link when the old one expires. In plain text, I want to:
The webhook triggers a Zapier automation that will create a new link.
This is what I have so far:
const urlParams = new URLSearchParams(window.location.search);
const StripeConnectedAccount = urlParams.get('StripeConnectedAccount');
fetch('https://hooks.zapier.com/hooks/catch/10517912/bthl3st'+?+StripeConnectedAccount);
That doesn't seem to be triggering the webhook though. Any help would be hugely appreciated.