Mandala
Tools

Instantly

Manage Instantly leads, campaigns, emails, and lead lists

Usage Instructions

Integrate Instantly API V2 into workflows. Create, update, and list leads, manage lead interest status, delete leads in bulk, list, create, patch, activate, pause, and delete campaigns, reply to emails, and manage lead lists.

Tools

instantly_list_leads

Retrieves Instantly V2 leads with search, campaign, list, and pagination filters.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
searchstringNoSearch by first name, last name, or email
filterstringNoInstantly lead filter value, such as FILTER_VAL_CONTACTED or FILTER_VAL_ACTIVE
campaignstringNoCampaign ID to filter leads
list_idstringNoLead list ID to filter leads
in_campaignbooleanNoWhether the lead is in a campaign
in_listbooleanNoWhether the lead is in a list
idsarrayNoLead IDs to include
excluded_idsarrayNoLead IDs to exclude
organization_user_idsarrayNoOrganization user IDs to filter leads
smart_view_idstringNoSmart view ID to filter leads
contactsarrayNoLead email addresses to include
limitnumberNoNumber of leads to return, from 1 to 100
starting_afterstringNoForward pagination cursor from next_starting_after
distinct_contactsbooleanNoWhether to return distinct contacts
is_website_visitorbooleanNoWhether the lead is a website visitor
enrichment_statusnumberNoEnrichment status filter
esg_codestringNoEmail security gateway code filter

Output

ParameterTypeDescription
leadsarrayList of leads
countnumberNumber of leads returned
next_starting_afterstringCursor for the next page

instantly_get_lead

Retrieves an Instantly V2 lead by ID.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
leadIdstringYesLead ID

Output

ParameterTypeDescription
leadobjectLead details
idstringLead ID
email_addressstringLead email address
first_namestringLead first name
last_namestringLead last name
campaignstringCampaign ID
statusnumberLead status

instantly_create_lead

Creates an Instantly V2 lead in a campaign or lead list.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
campaignstringNoCampaign ID associated with the lead
list_idstringNoLead list ID associated with the lead
emailstringNoLead email address. Required when adding to a campaign.
first_namestringNoLead first name
last_namestringNoLead last name
company_namestringNoLead company name
job_titlestringNoLead job title
phonestringNoLead phone number
websitestringNoLead website
personalizationstringNoLead personalization text
lt_interest_statusnumberNoLead interest status value
pl_value_leadstringNoPotential value of the lead
assigned_tostringNoOrganization user ID assigned to the lead
skip_if_in_workspacebooleanNoSkip if the lead already exists in the workspace
skip_if_in_campaignbooleanNoSkip if the lead already exists in the campaign
skip_if_in_listbooleanNoSkip if the lead already exists in the list
blocklist_idstringNoBlocklist ID to check for the lead
verify_leads_for_lead_finderbooleanNoWhether to verify leads imported from Lead Finder
verify_leads_on_importbooleanNoWhether to verify leads on import
custom_variablesjsonNoCustom variable object with string, number, boolean, or null values

Output

ParameterTypeDescription
leadobjectLead details
idstringLead ID
email_addressstringLead email address
first_namestringLead first name
last_namestringLead last name
campaignstringCampaign ID
statusnumberLead status

instantly_patch_lead

Updates fields on an existing Instantly V2 lead.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
leadIdstringYesLead ID
first_namestringNoLead first name
last_namestringNoLead last name
company_namestringNoLead company name
job_titlestringNoLead job title
phonestringNoLead phone number
websitestringNoLead website
personalizationstringNoLead personalization text
lt_interest_statusnumberNoLead interest status value
pl_value_leadstringNoPotential value of the lead
assigned_tostringNoID of the user assigned to the lead
custom_variablesjsonNoCustom variable object with string, number, boolean, or null values

Output

ParameterTypeDescription
leadobjectLead details
idstringLead ID
email_addressstringLead email address
first_namestringLead first name
last_namestringLead last name
campaignstringCampaign ID
statusnumberLead status

instantly_delete_leads

Deletes Instantly V2 leads in bulk from a campaign or lead list.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
campaign_idstringNoCampaign ID to delete leads from. Required if list_id is not provided.
list_idstringNoLead list ID to delete leads from. Required if campaign_id is not provided.
statusnumberNoOptional lead status filter
idsarrayNoSpecific lead IDs to delete
limitnumberNoMaximum number of matching leads to delete, up to 10000

Output

ParameterTypeDescription
countnumberNumber of leads deleted

instantly_update_lead_interest_status

Submits an Instantly V2 background job to update a lead interest status.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
lead_emailstringYesLead email address
interest_valuenumberNoInterest status value. Leave empty in the block or pass null to reset to Lead.
campaign_idstringNoCampaign ID for the lead
list_idstringNoLead list ID for the lead
ai_interest_valuenumberNoAI interest value to set for the lead
disable_auto_interestbooleanNoWhether to disable auto interest

Output

ParameterTypeDescription
messagestringBackground job submission message

instantly_list_campaigns

Retrieves Instantly V2 campaigns with search, status, tag, and pagination filters.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
limitnumberNoNumber of campaigns to return, from 1 to 100
starting_afterstringNoPagination cursor from next_starting_after
searchstringNoSearch by campaign name
tag_idsstringNoComma-separated campaign tag IDs
ai_sales_agent_idstringNoFilter campaigns by AI Sales Agent ID
statusnumberNoCampaign status enum value

Output

ParameterTypeDescription
campaignsarrayList of campaigns
countnumberNumber of campaigns returned
next_starting_afterstringCursor for the next page

instantly_create_campaign

Creates an Instantly V2 campaign using the documented campaign schedule schema.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
namestringYesCampaign name
campaign_schedulejsonYesCampaign schedule object with schedules array
sequencesarrayNoCampaign sequence definitions
email_listarrayNoSending email accounts
daily_limitnumberNoDaily sending limit
daily_max_leadsnumberNoDaily maximum new leads to contact
open_trackingbooleanNoWhether to track opens
stop_on_replybooleanNoWhether to stop the campaign on reply
link_trackingbooleanNoWhether to track links
text_onlybooleanNoWhether the campaign is text only
email_gapnumberNoGap between emails in minutes
pl_valuenumberNoValue of every positive lead

Output

ParameterTypeDescription
campaignobjectCampaign details
idstringCampaign ID
namestringCampaign name
statusnumberCampaign status

instantly_patch_campaign

Updates documented Instantly V2 campaign fields.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
campaignIdstringYesCampaign ID
namestringNoCampaign name
campaign_schedulejsonNoCampaign schedule object with schedules array
sequencesarrayNoCampaign sequence definitions
email_listarrayNoSending email accounts
daily_limitnumberNoDaily sending limit
daily_max_leadsnumberNoDaily maximum new leads to contact
open_trackingbooleanNoWhether to track opens
stop_on_replybooleanNoWhether to stop the campaign on reply
link_trackingbooleanNoWhether to track links
text_onlybooleanNoWhether the campaign is text only
email_gapnumberNoGap between emails in minutes
pl_valuenumberNoValue of every positive lead

Output

ParameterTypeDescription
campaignobjectCampaign details
idstringCampaign ID
namestringCampaign name
statusnumberCampaign status

instantly_activate_campaign

Activates, starts, or resumes an Instantly V2 campaign.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
campaignIdstringYesCampaign ID

Output

ParameterTypeDescription
campaignobjectCampaign details
idstringCampaign ID
namestringCampaign name
statusnumberCampaign status
messagestringConfirmation message from Instantly

instantly_pause_campaign

Pauses a running Instantly V2 campaign, stopping further email sends.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
campaignIdstringYesCampaign ID

Output

ParameterTypeDescription
campaignobjectCampaign details
idstringCampaign ID
namestringCampaign name
statusnumberCampaign status
messagestringConfirmation message from Instantly

instantly_delete_campaign

Permanently deletes an Instantly V2 campaign.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
campaignIdstringYesCampaign ID

Output

ParameterTypeDescription
campaignobjectCampaign details
idstringCampaign ID
namestringCampaign name
statusnumberCampaign status
messagestringConfirmation message from Instantly

instantly_list_emails

Retrieves Instantly V2 Unibox emails with search and pagination filters.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
limitnumberNoNumber of emails to return, from 1 to 100
starting_afterstringNoPagination cursor from next_starting_after
searchstringNoSearch query, email address, or thread:<thread-id>
campaign_idstringNoCampaign ID filter
list_idstringNoLead list ID filter
i_statusnumberNoEmail interest status filter
eaccountstringNoSending email account filter
leadstringNoLead email address filter
is_unreadbooleanNoUnread status filter

Output

ParameterTypeDescription
emailsarrayList of emails
countnumberNumber of emails returned
next_starting_afterstringCursor for the next page

instantly_reply_to_email

Sends an Instantly V2 reply to an existing Unibox email.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
eaccountstringYesConnected email account used to send the reply
reply_to_uuidstringYesEmail ID to reply to
subjectstringYesReply subject
bodyjsonYesReply body object with text and/or html
cc_address_email_liststringNoComma-separated CC email addresses
bcc_address_email_liststringNoComma-separated BCC email addresses

Output

ParameterTypeDescription
emailobjectEmail details
idstringEmail ID
subjectstringEmail subject
thread_idstringThread ID

instantly_list_lead_lists

Retrieves Instantly V2 lead lists with search and pagination filters.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
limitnumberNoNumber of lead lists to return, from 1 to 100
starting_afterstringNoStarting-after timestamp cursor
has_enrichment_taskbooleanNoFilter by enrichment task setting
searchstringNoSearch query to filter lead lists by name

Output

ParameterTypeDescription
lead_listsarrayList of lead lists
countnumberNumber of lead lists returned
next_starting_afterstringCursor for the next page

instantly_create_lead_list

Creates an Instantly V2 lead list.

Input

ParameterTypeRequiredDescription
apiKeystringYesInstantly API key with the required V2 scopes
namestringYesLead list name
has_enrichment_taskbooleanNoWhether this list runs enrichment for every added lead
owned_bystringNoUser ID of the lead list owner

Output

ParameterTypeDescription
lead_listobjectLead list details
idstringLead list ID
namestringLead list name

Triggers

instantly_webhook

Trigger workflow on any Instantly webhook event

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_email_sent

Trigger when Instantly sends an email

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_email_opened

Trigger when a lead opens an Instantly email

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_reply_received

Trigger when a lead replies to an Instantly email

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_auto_reply_received

Trigger when Instantly receives an auto-reply from a lead

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

Trigger when a lead clicks a tracked Instantly link

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_email_bounced

Trigger when an Instantly email bounces

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_unsubscribed

Trigger when an Instantly lead unsubscribes

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_account_error

Trigger when Instantly reports an account-level error

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_campaign_completed

Trigger when an Instantly campaign completes

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_neutral

Trigger when an Instantly lead is marked neutral

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_interested

Trigger when an Instantly lead is marked interested

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_not_interested

Trigger when an Instantly lead is marked not interested

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_meeting_booked

Trigger when an Instantly lead books a meeting

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_meeting_completed

Trigger when an Instantly lead completes a meeting

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_closed

Trigger when an Instantly lead is marked closed

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_out_of_office

Trigger when an Instantly lead is out of office

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_wrong_person

Trigger when an Instantly lead is marked wrong person

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_lead_no_show

Trigger when an Instantly lead is marked no show

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

instantly_supersearch_enrichment_completed

Trigger when Instantly completes a Supersearch enrichment

Output

ParameterTypeDescription
timestampstringISO timestamp when the event occurred
eventTypestringInstantly webhook event type
workspacestringInstantly workspace UUID
campaignIdstringInstantly campaign UUID
campaignNamestringInstantly campaign name
leadEmailstringLead email address
emailAccountstringEmail account used to send the message
uniboxUrlstringURL to view the conversation in Unibox
stepnumberCampaign step number, starting at 1
variantnumberCampaign step variant number, starting at 1
isFirstbooleanWhether this is the first event of this type
emailIdstringEmail ID, usable as reply_to_uuid
emailSubjectstringSent email subject
emailTextstringSent email plain-text content
emailHtmlstringSent email HTML content
replyTextSnippetstringShort preview of the reply content
replySubjectstringReply email subject
replyTextstringFull plain-text reply content
replyHtmlstringFull HTML reply content
payloadjsonFull Instantly webhook payload, including any extra lead data fields

Notes

  • Category: tools
  • Type: instantly
Instantly