Dropcontact#
Use the Dropcontact node to automate work in Dropcontact, and integrate Dropcontact with other applications. Ensemble has built-in support for a wide range of Dropcontact features, including fetching contacts.
On this page, you'll find a list of operations the Dropcontact node supports and links to more resources.
Credentials
Refer to Dropcontact credentials for guidance on setting up authentication.
Basic Operations#
Contact - Enrich - Fetch Request
Example Usage#
This Pathway allows you to find email and enrich your contact from a Google Sheet and add them to Lemlist.
This example usage Pathway would use the following nodes. - Start - Google Sheets node - Dropcontact node - Lemlist node
1. Start Node#
The start node exists by default when you create a new workflow.
2. Google Sheet node#
This node will list all the records from Google Sheet. Create a sheet like this in your Google Drive.
-
First of all, you'll have to enter credentials for the Google Sheet node. You can find out how to do that here.
-
Select the 'Sheet' option from the Ressource dropdown list.
- Select the 'Read' option from the Operation dropdown list.
- Enter the Sheet ID in the Sheet ID field. Your Google Sheet ID is available in the URL
https://docs.google.com/spreadsheets/d/{spreadsheetId}/edit
- In the Range field, enter
A:K
. - Click on Execute Node to run the node.
3. Dropontact node#
This node will find the verified email address and enrich the contact.
-
First of all, you'll have to enter credentials for the Dropcontact node. You can find out how to do that here.
-
Select 'Contact' from the Resource dropdown list.
- Select 'Enrich' from the Operation dropdown list.
- Click on Add Field and select 'Company Name'.
- Click on the gears icon next to the Company Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > companyName . You can also add the following expression:
{{$json["fields"]["companyName"]}}
. - Click on Add Field and select 'First Name'.
- Click on the gears icon next to the First Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > firstName . You can also add the following expression:
{{$json["fields"]["firstName"]}}
. - Click on Add Field and select 'Full Name'.
- Click on the gears icon next to the Full Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > fullName . You can also add the following expression:
{{$json["fields"]["fullName"]}}
. - Click on Add Field and select 'Last Name'.
- Click on the gears icon next to the Last Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > lastName . You can also add the following expression:
{{$json["fields"]["lastName"]}}
. - Click on Execute Node to run the node.
4. Lemlist node#
This node will create new leads for a campaign in Lemlist.
- First of all, you'll have to enter credentials for the Lemlist node. You can find out how to do that here.
- Select 'Lead' from the Resource dropdown list.
- Select a campaign from the Campaign ID dropdown list.
-
Click on the gears icon next to the Email field and click on 'Add Expression'.
-
Select the following in the Variable Selector section: Dropcontact > Input Data > JSON > fields > email > [Item: 0] > email. You can also add the following expression:
{{$json["email"][0]["email"]}}
- Click on the Add Field button and select 'First Name'.
- Click on the gears icon next to the First Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > first_name . You can also add the following expression:
{{$json["fields"]["first_name"]}}
. - Click on the Add Field button and select 'Last Name'.
- Click on the gears icon next to the Last Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > last_name . You can also add the following expression:
{{$json["fields"]["last_name"]}}
. - Click on the Add Field button and select 'Company Name'.
- Click on the gears icon next to the Company Name field and click on Add Expression.
- Select the following in the Variable Selector section: Node > Input Data > JSON > fields > company_name . You can also add the following expression:
{{$json["fields"]["company_name"]}}
. - Click on the Add Field button and select 'Deduplicate'.
- Toggle Deduplicate to
true
. - Click on Execute Node to run the node.