Skip to main content
All CollectionsIntegrations
Integrating Claspo with SendFox
Integrating Claspo with SendFox

Step-by-step guide to integrate Claspo with SendFox using webhooks

M
Written by Maryna Hura
Updated over a week ago

To integrate Claspo with SendFox using webhooks, follow these steps.

Step 1: Generate an API Token and Get the Webhook URL

1. Log into your SendFox account and navigate to the API section.

Access your SendFox dashboard by logging into your account. Go to the Audience section from the main menu.

2. Click on Settings in the Audience section. Select the API option.

Here, you’ll also find the API endpoints you’ll need as a webhook URL.

3. Create an API token.

In the API section, click on Create token.

Name your token (for example: "Claspo") to keep track of its usage. Once the token is generated, copy it. You’ll need this for the next steps.

Step 2: Configure Webhook in Claspo

1. Access the Claspo dashboard.

Log in to your Claspo account and navigate to the widget you wish to connect with SendFox.

2. Go to the Integrations step in your widget settings.

Select webhook as the integration method.

3. Add the SendFox webhook URL.

In the webhook settings, specify the URL for the webhook: https://api.sendfox.com/contacts

4. Set up Authentication.
Firstly, enable the Authentication toggle. You’ll need the Bearer Token authentication method, which is set by default. In the Token input field, paste the token you recently obtained from your SendFox account.

Step 3: Map Data Fields

  1. Set required parameters.

In SendFox, the only required parameter is email. All other parameters are optional and depend on the widget you create in Claspo and SendFox's ability to accept additional data besides email.

To make it easier, here's an example JSON format you can copy directly.

Example with only email:

{
"email": "{{email}}"
}

Example with email and first name:

{
"first_name": "{{first_name}}",
"email": "{{email}}"
}

For a detailed list of parameters that can be sent, go to the SendFox documentation page and refer to the POST/contacts.

2. Next, you can test the integration to make sure everything is working correctly. To get started, click on Test.

3. Click Done and activate the webhook.

Your SendFox account is now integrated with Claspo. You can edit the configuration at any time. Your Claspo widget will now automatically send lead data to SendFox whenever someone submits the form.

Did this answer your question?