Skip to main content

Integrate Extrovert with n8n

How to push prospects from n8n to Extrovert and vice versa

Oleg Sobolev avatar
Written by Oleg Sobolev
Updated over 2 weeks ago

There are two ways to integrate with n8n:

  • Add prospects from n8n to Extrovert (or remove them when you don't need them anymore)

  • Push prospects to n8n after you commented X times on their posts

How to Add prospects to Extrovert from n8n

Use this if you want to add prospects to your Extrovert campaign from a specific n8n workflow (e.g. get prospects from your CRM, check if they fit your ICP, and if yes, add them to Extrovert)
​

You can use the n8n template to do this easily. Here's how:

  1. Download the template (json file, link is at the end of this article; scroll to the very end to find it)

  2. Go to n8n β†’ Create workflow

  3. Click on 3 dots β†’ Import from file

  4. Select the downloaded file. You should see the template with 3 nodes.

  5. This is just a template; adjust it to your liking. You might only need one node, such as adding prospects.

  6. See more information in the sticky notes

Push prospect to n8n after X number of comments

This is useful if you would like to push your prospects to your n8n automation after a specific number of comments (e.g. integrate with your outreach tool through n8n). To do that:

  1. Go to n8n and Create a new workflow. Choose a webhook as a starting node.

  2. Copy the test URL

  3. Go to Extrovert Webhooks page and Add a webhook

  4. Set the following parameters:

    • Name: name your webhook, like "Push prospects to n8n"

    • Number of comments: specify the number of comments, e.g. 1 (to test the webhook, it's better to put 1)

    • Campaigns: choose the campaigns

    • Method: GET

    • Request URL: Webhook URL you copied from n8n

    • Request body: copy this

      {
      "firstName": "{{firstName}}",
      "lastName": "{{lastName}}",
      "linkedinUrl": "{{linkedinUrl}}"
      }
    • Authentication: No authentication

  5. Save the webhook

  6. Go to n8n and click Listen for test event

  7. To test the webhook, go to Extrovert's feed and leave a comment for your prospects in this campaign.

  8. After the comment is posted (wait 2 minutes), go back to n8n. If in n8n the listening will finish, click Listen again

  9. The webhook status should update

  10. Now you can use the parameters in other nodes

  11. Do not forget to change the webhook URL to the production URL in Extrovert

Did this answer your question?