Creating a webhook

How to create a webhook on Palabra

How to create a webhook

To create a webhook go to https://a.palabra.io/ and open one of your funnels.

  1. Go to the Integrations screen following this link: https://a.palabra.io/integrations:

  2. On the list of integrations find Webhook and click the card to create a new one.

  3. That will open the webhook's modal. Start by naming your webhook:

4. Now click 'Copy URL'.

5. Go to Postman and paste your URL:

Make sure you send a POST request and that you add a body of type JSON.

Important: make sure you always send an email address on your webhook's request.

Sending an email address on your payload is mandatory. You can also send other user data, like first name and last name. Just add those as properties on your payload's object:

{
    "email": "karen@palabra.io",
    "firstName": "Karen",
    "position": "developer"
}

6. Send your request and wait till you get a success message:

{
    "status": "Success",
    "message": "Data received!"
}

7. That's it! You can now go back to Palabra's UI and see that your request was received successfully:

Last updated