{% import '_includes/forms' as forms %} {% import 'verbb-base/_macros' as macros %} {% set displayName = integration.displayName() %} {% set instructions %} ### Connect to the {name} API 1. Go to Zapier and create a new Zap. 1. For the **Choose App & Event** value, enter **Webhooks by Zapier**. 1. For the **Choose Trigger Event** value, enter **Catch Hook**. 1. Click **Continue**. 1. Copy the **Custom Webhook URL** into the **Webhook** field below. {% endset %}
{{ instructions | t('formie', { name: displayName }) | md }}
{% if not craft.app.config.general.allowAdminChanges %} {{ 'Integration settings can only be editable on an environment with `allowAdminChanges` enabled.' | t('formie') | md(inlineOnly=true) }} {% endif %} {{ macros.proxyField(fieldVariables, 'autosuggestField', { label: 'Webhook URL' | t('formie'), instructions: 'Enter the {name} webhook URL that will be triggered when a submission is made.' | t('formie'), name: 'webhook', suggestEnvVars: true, value: integration.settings.webhook ?? '', warning: macros.configWarning('webhook', 'formie'), errors: integration.getErrors('webhook'), }) }}