When you add a feeder element to your campaign canvas, you are identifying the contacts to include as members of the campaign. The following are the feeder steps that are available:
Purpose: This step allows you to add contacts from an existing contact list to your campaign workflow.
Click on the "Add from List" step.
The step will now appear on the canvas. When you select it, a pop-up window will open. If desired, you can rename the step (the default name is "Add from List").
Select the contact list you want to add to the campaign.
Choose the Re-evaluation Frequency, which can be set in hours, days, or weeks. This checks for new contacts in the list at your specified interval and automatically add the contacts to the workflow. Click on "Save" to finalize the step.
Purpose: This step allows contacts to be added dynamically from Discover or Contact List to an activated campaign.
Click on the "Listener" step in the campaign.
The step will now appear on the canvas. When you select it, a pop-up window will open. If desired, you can rename the step (the default name is "Listener").
Contacts can be added directly from Discover>Contacts or Contact List, provided the campaign includes this step (listener). In the contacts section, choose “Add to a campaign” to add leads directly to the campaign.
Select the desired campaign from the dropdown and enable the checkbox next to "Listener". Click "Save" to confirm and add the step.
Purpose: Webhook in Audienz.ai is a way to receive real-time data from external applications or services, when a specific event occurs. The webhook sends data to another application automatically.
Select the Webhook step from the list of Feeder Steps and add it to the canvas.
Double-click the step, then enter a descriptive name for the webhook (optional). The system will automatically generate a unique Webhook URL and API key. Copy both the Webhook URL and API Key, then click 'Save'.
An API key is automatically generated and stored securely in an encrypted format.
The API key is required when sending data and must be included in the request header as "x-api-key".
If needed, click on the "Regenerate API Key". A new API key can be generated, which will replace the existing one.
The data must be formatted as a JSON array of objects.
Only predefined fields are accepted—any additional fields will be rejected.
Below is a list of supported fields for reference.
{
"data": [
{
"personalEmail": "test@portqii.com",
"firstName": "test",
"lastName": "test",
"linkedinUrl": "test",
"companyName": "test",
"businessEmail": "test@portqii.com",
"jobTitle": "test",
"department": "test",
"seniorityLevel": "test",
"sicDescription": "test",
"primaryContactHeadline": "test",
"personalPhone": "test",
"personalCity": "test",
"personalState": "test",
"zip": "test",
"personalCountry": "test"
}
]
}
Submit your data via an HTTP POST request to your webhook URL, including the required headers below
Content-Type: application/json
x-api-key: [Your API Key]
Example request using cURL:
curl -X POST "<webhook url>" \ -H "Content-Type: application/json" \ -H "x-api-key: <API_KEY>" \ -d '{ "data": [ { "personalEmail": "test@portqii.com", "firstName": "test", "lastName": "test", "linkedinUrl": "test", "companyName": "test", "businessEmail": "test@portqii.com", "jobTitle": "test", "department": "test", "seniorityLevel": "test", "sicDescription": "test", "primaryContactHeadline": "test", "personalPhone": "test", "personalCity": "test", "personalState": "test", "zip": "test", "personalCountry": "test" } ] }'
To test a webhook without processing data, use the silent validation endpoint:
This will:
Confirm if the webhook is active.
Verify the API key.
Check if the data format is correct.
Secure API Keys: All API keys are encrypted and stored securely.
Rate Limiting: Requests are rate-limited to prevent excessive requests.
Payload Limit: Each payload accepts a maximum of 100 entries; excess data will be considered as invalid data.
API Key Regeneration: New API keys can be generated from the webhook configuration if needed.
Lead Capture: Automatically collect lead data from external sources.
Workflow Automation: Trigger business processes based on incoming data.
Data Synchronization: Keep databases and third-party systems up to date in real time.
Ensure the correct API key is included in the request.
If the issue persists, generate a new API key and update the request.
Verify that the data follows the predefined JSON schema.
Use a JSON validator to check for formatting errors.
The webhook will only process data if the workflow is active.
Check the workflow status in the platform settings and activate it if necessary.
You may be sending too many requests in a short time.
Reduce request frequency or contact support for an adjustment to rate limits.
Check the webhook URL and API key for typos.
If the webhook is missing, delete it and create a new one.
If the API key is missing, generate a new one from the webhook settings.
By following these steps, you can efficiently add contacts to your campaigns using Feeder Steps. Whether you’re targeting a predefined list or adding contacts dynamically, this guide ensures a smooth and streamlined process.