KosmoKrator

productivity

Instantly Lua API for KosmoKrator Agents

Agent-facing Lua documentation and function reference for the Instantly KosmoKrator integration.

181 functions 87 read 94 write API key auth

Lua Namespace

Agents call this integration through app.integrations.instantly.*. Use lua_read_doc("integrations.instantly") inside KosmoKrator to discover the same reference at runtime.

Agent-Facing Lua Docs

This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.

Instantly Integration

This integration targets the Instantly API v2 at https://api.instantly.ai/api/v2 and uses Bearer token authentication.

Coverage

The package exposes 181 tools. It covers the current official API v2 resource groups plus a small set of Instantly surfaces that remain present in this package for host compatibility:

  • Accounts, OAuth account connection, account-campaign mappings
  • Campaigns, campaign sharing/export/import, campaign variables, campaign analytics
  • Leads, lead lists, lead labels, interest status updates, subsequences
  • Emails, test email send, email verification, email templates
  • Block list entries, including bulk create/delete, delete-all, and CSV download
  • Webhooks and webhook events
  • Workspace, workspace members, workspace group members, workspace billing
  • Inbox placement tests, analytics, and reports
  • SuperSearch enrichment, custom tags, custom tag mappings
  • API keys, audit logs, background jobs, DFY email account orders, CRM phone-number actions
  • Compatibility tools for custom prompt templates and sales flows where host catalogs already expose them

Authentication

Create an Instantly API v2 key in Instantly workspace settings and store it as api_key.

Some endpoints require specific API scopes. OAuth account initialization, account movement, API key management, workspace group member operations, and destructive block list operations often require elevated scopes or an admin workspace API key.

Pagination

Most list tools accept:

  • limit
  • starting_after

Pass the returned cursor from one page into starting_after to continue pagination. Keep page sizes modest when an agent will inspect the output directly.

Common Input Formats

Tools prefer Instantly’s current snake_case field names. Several tools also accept comma-separated strings for convenience where the official API expects arrays, such as emails, ids, bl_values, account_ids, and variables.

Complex objects such as campaign sequences, campaign_schedule, enrichment filters, and sales flow payloads may be passed as JSON strings or native objects depending on the tool parameter.

Important Workflows

OAuth Account Connection

Use instantly_initialize_google_oauth or instantly_initialize_microsoft_oauth to get an auth_url and session_id. Send the user to auth_url, then poll instantly_get_oauth_session_status with the session ID until it returns success, error, or expired.

Test Email

Use instantly_send_test_email for preview sends. It requires:

  • eaccount
  • to_address_email_list
  • subject
  • html

The endpoint sends a test email and does not create an Unibox email entity.

Lead Interest Status

Use instantly_update_lead_interest_status with lead_email and interest_value. Add campaign_id or list_id when the workspace may contain the same lead in multiple places. Instantly submits this as a background job.

Block List Safety

Use bulk block list tools for large changes:

  • instantly_bulk_create_blocklist_entries with bl_values
  • instantly_bulk_delete_blocklist_entries with ids
  • instantly_download_blocklist_entries for CSV export

instantly_delete_all_blocklist_entries requires confirm=true. Use search or domains_only whenever possible to avoid broad workspace deletion.

Campaign Portability

Use:

  • instantly_share_campaign to enable sharing for a campaign
  • instantly_export_campaign to retrieve JSON campaign data
  • instantly_create_campaign_from_export to clone from a shared/exported campaign
  • instantly_add_campaign_variables to register variables on an existing campaign

Normalized Behavior

Analytics tools accept older aliases campaign_id, from, and to, but the service normalizes them to Instantly’s current query parameters id, start_date, and end_date before sending requests.

instantly_test_vitals sends the current accounts array payload. The older email shortcut remains available for compatibility and is converted to a one-item accounts array.

The block list CSV download returns raw CSV text, not JSON.

Raw agent markdown
# Instantly Integration

This integration targets the Instantly API v2 at `https://api.instantly.ai/api/v2` and uses Bearer token authentication.

## Coverage

The package exposes 181 tools. It covers the current official API v2 resource groups plus a small set of Instantly surfaces that remain present in this package for host compatibility:

- Accounts, OAuth account connection, account-campaign mappings
- Campaigns, campaign sharing/export/import, campaign variables, campaign analytics
- Leads, lead lists, lead labels, interest status updates, subsequences
- Emails, test email send, email verification, email templates
- Block list entries, including bulk create/delete, delete-all, and CSV download
- Webhooks and webhook events
- Workspace, workspace members, workspace group members, workspace billing
- Inbox placement tests, analytics, and reports
- SuperSearch enrichment, custom tags, custom tag mappings
- API keys, audit logs, background jobs, DFY email account orders, CRM phone-number actions
- Compatibility tools for custom prompt templates and sales flows where host catalogs already expose them

## Authentication

Create an Instantly API v2 key in Instantly workspace settings and store it as `api_key`.

Some endpoints require specific API scopes. OAuth account initialization, account movement, API key management, workspace group member operations, and destructive block list operations often require elevated scopes or an admin workspace API key.

## Pagination

Most list tools accept:

- `limit`
- `starting_after`

Pass the returned cursor from one page into `starting_after` to continue pagination. Keep page sizes modest when an agent will inspect the output directly.

## Common Input Formats

Tools prefer Instantly's current snake_case field names. Several tools also accept comma-separated strings for convenience where the official API expects arrays, such as `emails`, `ids`, `bl_values`, `account_ids`, and `variables`.

Complex objects such as campaign `sequences`, `campaign_schedule`, enrichment filters, and sales flow payloads may be passed as JSON strings or native objects depending on the tool parameter.

## Important Workflows

### OAuth Account Connection

Use `instantly_initialize_google_oauth` or `instantly_initialize_microsoft_oauth` to get an `auth_url` and `session_id`. Send the user to `auth_url`, then poll `instantly_get_oauth_session_status` with the session ID until it returns `success`, `error`, or `expired`.

### Test Email

Use `instantly_send_test_email` for preview sends. It requires:

- `eaccount`
- `to_address_email_list`
- `subject`
- `html`

The endpoint sends a test email and does not create an Unibox email entity.

### Lead Interest Status

Use `instantly_update_lead_interest_status` with `lead_email` and `interest_value`. Add `campaign_id` or `list_id` when the workspace may contain the same lead in multiple places. Instantly submits this as a background job.

### Block List Safety

Use bulk block list tools for large changes:

- `instantly_bulk_create_blocklist_entries` with `bl_values`
- `instantly_bulk_delete_blocklist_entries` with `ids`
- `instantly_download_blocklist_entries` for CSV export

`instantly_delete_all_blocklist_entries` requires `confirm=true`. Use `search` or `domains_only` whenever possible to avoid broad workspace deletion.

### Campaign Portability

Use:

- `instantly_share_campaign` to enable sharing for a campaign
- `instantly_export_campaign` to retrieve JSON campaign data
- `instantly_create_campaign_from_export` to clone from a shared/exported campaign
- `instantly_add_campaign_variables` to register variables on an existing campaign

## Normalized Behavior

Analytics tools accept older aliases `campaign_id`, `from`, and `to`, but the service normalizes them to Instantly's current query parameters `id`, `start_date`, and `end_date` before sending requests.

`instantly_test_vitals` sends the current `accounts` array payload. The older `email` shortcut remains available for compatibility and is converted to a one-item `accounts` array.

The block list CSV download returns raw CSV text, not JSON.

Metadata-Derived Lua Example

local result = app.integrations.instantly.instantly_activate_campaign({
  id = "example_id"
})
print(result)

Functions

instantly_activate_campaign

Activate a campaign to start sending emails.

Operation
Write write
Full name
instantly.instantly_activate_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID

instantly_add_campaign_variables

Add custom variables to an existing campaign.

Operation
Write write
Full name
instantly.instantly_add_campaign_variables
ParameterTypeRequiredDescription
id string yes Campaign ID
variables array yes Variable names to add to the campaign

instantly_ai_enrichment_progress

Get AI enrichment progress for a resource.

Operation
Read read
Full name
instantly.instantly_ai_enrichment_progress
ParameterTypeRequiredDescription
resource_id string yes Resource ID

instantly_analytics_campaign

Get campaign analytics including sends, opens, clicks, replies, and bounces.

Operation
Read read
Full name
instantly.instantly_analytics_campaign
ParameterTypeRequiredDescription
campaign_id string yes Campaign ID
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)

instantly_analytics_campaign_overview

Get overview analytics across all campaigns.

Operation
Read read
Full name
instantly.instantly_analytics_campaign_overview
ParameterTypeRequiredDescription
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)

instantly_analytics_campaign_steps

Get campaign step analytics.

Operation
Read read
Full name
instantly.instantly_analytics_campaign_steps
ParameterTypeRequiredDescription
campaign_id string yes Campaign ID
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)

instantly_analytics_daily_account

Get daily account analytics breakdown.

Operation
Read read
Full name
instantly.instantly_analytics_daily_account
ParameterTypeRequiredDescription
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)

instantly_analytics_daily_campaign

Get daily campaign analytics breakdown.

Operation
Read read
Full name
instantly.instantly_analytics_daily_campaign
ParameterTypeRequiredDescription
campaign_id string yes Campaign ID
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)

instantly_analytics_warmup

Get warmup analytics for email accounts.

Operation
Read read
Full name
instantly.instantly_analytics_warmup
ParameterTypeRequiredDescription
emails array yes Email addresses to check

instantly_billing_plan_details

Get workspace plan details.

Operation
Read read
Full name
instantly.instantly_billing_plan_details
ParameterTypeRequiredDescription
No parameters.

instantly_billing_subscription_details

Get workspace subscription details.

Operation
Read read
Full name
instantly.instantly_billing_subscription_details
ParameterTypeRequiredDescription
No parameters.

instantly_bulk_add_leads

Add leads in bulk to a campaign or list.

Operation
Write write
Full name
instantly.instantly_bulk_add_leads
ParameterTypeRequiredDescription
leads string yes JSON array of lead objects
campaign_id string no Campaign ID
list_id string no List ID
skip_if_in_workspace boolean no Skip existing leads
skip_if_in_campaign boolean no Skip leads in campaign

instantly_bulk_assign_leads

Bulk assign leads to organization users.

Operation
Write write
Full name
instantly.instantly_bulk_assign_leads
ParameterTypeRequiredDescription
organization_user_ids string yes Comma-separated user IDs
campaign string no Campaign ID filter
list_id string no List ID filter
ids string no Comma-separated lead IDs
limit integer no Max leads to assign

instantly_bulk_create_blocklist_entries

Create block list entries in bulk from domains or email addresses.

Operation
Write write
Full name
instantly.instantly_bulk_create_blocklist_entries
ParameterTypeRequiredDescription
bl_values array yes Domains or email addresses to block

instantly_bulk_delete_blocklist_entries

Delete block list entries in bulk by entry ID.

Operation
Write write
Full name
instantly.instantly_bulk_delete_blocklist_entries
ParameterTypeRequiredDescription
ids array yes Block list entry IDs to delete

instantly_bulk_delete_leads

Delete multiple leads in bulk.

Operation
Write write
Full name
instantly.instantly_bulk_delete_leads
ParameterTypeRequiredDescription
campaign_id string no Campaign ID
list_id string no List ID
ids string no Comma-separated lead IDs
status integer no Only delete leads with this status
limit integer no Max leads to delete

instantly_campaign_sending_status

Get sending status and diagnostics for a campaign.

Operation
Read read
Full name
instantly.instantly_campaign_sending_status
ParameterTypeRequiredDescription
id string yes Campaign ID
with_ai_summary boolean no Include AI summary

instantly_cancel_dfy_accounts

Cancel DFY email accounts.

Operation
Write write
Full name
instantly.instantly_cancel_dfy_accounts
ParameterTypeRequiredDescription
accounts string yes Comma-separated emails to cancel

instantly_change_workspace_owner

Change the owner of the current workspace.

Operation
Write write
Full name
instantly.instantly_change_workspace_owner
ParameterTypeRequiredDescription
email string yes New owner email
sec string yes Secret token

instantly_check_dfy_domains

Check domain availability for DFY orders.

Operation
Read read
Full name
instantly.instantly_check_dfy_domains
ParameterTypeRequiredDescription
domains string yes Comma-separated domains to check

instantly_count_launched_campaigns

Get the count of launched campaigns.

Operation
Read read
Full name
instantly.instantly_count_launched_campaigns
ParameterTypeRequiredDescription
No parameters.

instantly_create_account

Create a new email account via SMTP/IMAP credentials.

Operation
Write write
Full name
instantly.instantly_create_account
ParameterTypeRequiredDescription
email string yes Email address
first_name string no First name
last_name string no Last name
smtp_host string yes SMTP server host
smtp_port integer yes SMTP port
smtp_username string yes SMTP username
smtp_password string yes SMTP password
imap_host string yes IMAP host
imap_port integer yes IMAP port
imap_username string yes IMAP username
imap_password string yes IMAP password
daily_limit integer no Daily sending limit

instantly_create_ai_enrichment

Create AI enrichment for a resource. Uses AI models to generate custom columns.

Operation
Write write
Full name
instantly.instantly_create_ai_enrichment
ParameterTypeRequiredDescription
resource_id string yes Resource ID
output_column string yes Output column name
resource_type integer yes Resource type
model_version string yes AI model version
input_columns string no Comma-separated input columns
use_instantly_account boolean no Use Instantly account
overwrite boolean no Overwrite existing values
auto_update boolean no Auto-enrich new leads
skip_leads_without_email boolean no Skip leads without email
limit integer no Max leads to enrich
prompt string no Custom AI prompt
template_id integer no Prompt template ID

instantly_create_api_key

Create a new API key with specified scopes.

Operation
Write write
Full name
instantly.instantly_create_api_key
ParameterTypeRequiredDescription
name string yes Key name
scopes string yes Comma-separated scopes

instantly_create_blocklist_entry

Add an email or domain to the blocklist.

Operation
Write write
Full name
instantly.instantly_create_blocklist_entry
ParameterTypeRequiredDescription
bl_value string yes Email or domain to block

instantly_create_campaign

Create a new campaign with full configuration including sequences, schedule, and sender accounts.

Operation
Write write
Full name
instantly.instantly_create_campaign
ParameterTypeRequiredDescription
name string yes Campaign name
open_tracking boolean no Enable open tracking
link_tracking boolean no Enable link tracking
text_only boolean no Plain text only
stop_on_reply boolean no Stop on reply
stop_on_auto_reply boolean no Stop on auto-reply
daily_limit integer no Max emails/day per account
email_gap integer no Minutes between emails
email_list array no Sender email addresses
sequences string no JSON sequences array
campaign_schedule string no JSON schedule object

instantly_create_campaign_from_export

Create a new campaign from a shared/exported campaign ID.

Operation
Write write
Full name
instantly.instantly_create_campaign_from_export
ParameterTypeRequiredDescription
id string yes Shared/exported campaign ID

instantly_create_custom_prompt_template

Create a new custom prompt template for AI enrichment.

Operation
Write write
Full name
instantly.instantly_create_custom_prompt_template
ParameterTypeRequiredDescription
name string yes Template name
prompt string yes Prompt text with {{property}} placeholders
category integer yes 1=Copywriting,2=Cleaning,3=Sales,4=Marketing,5=Other,6=Personalization
is_public boolean yes Public visibility
description string no Description
model_version string no Model version
template_type string no custom or public
from_shared boolean no Cloned from shared

instantly_create_custom_tag

Create a new custom tag for organizing accounts and campaigns.

Operation
Write write
Full name
instantly.instantly_create_custom_tag
ParameterTypeRequiredDescription
label string yes Tag label
description string no Tag description

instantly_create_dfy_order

Place a DFY email account order.

Operation
Write write
Full name
instantly.instantly_create_dfy_order
ParameterTypeRequiredDescription
items string yes JSON order items
order_type string yes dfy, pre_warmed_up, or extra_accounts
simulation boolean no Simulate without ordering

instantly_create_email_template

Create an email template.

Operation
Write write
Full name
instantly.instantly_create_email_template
ParameterTypeRequiredDescription
template_name string yes Template name
subject string yes Email subject
body string yes Email body
category string no Category

instantly_create_enrichment

Create an enrichment for a resource (campaign or lead list).

Operation
Write write
Full name
instantly.instantly_create_enrichment
ParameterTypeRequiredDescription
resource_id string yes Resource ID
type string yes Enrichment type
limit integer no Max leads to enrich
filters string no JSON filters
custom_flow string no JSON custom flow

instantly_create_inbox_placement_test

Create an inbox placement test. Send test emails to check deliverability.

Operation
Write write
Full name
instantly.instantly_create_inbox_placement_test
ParameterTypeRequiredDescription
name string yes Test name
type integer yes 0=one-time, 1=automated
sending_method integer yes 0=Instantly, 1=external
email_subject string yes Email subject
email_body string yes Email body
emails string yes Comma-separated seed emails

instantly_create_lead

Create a single lead.

Operation
Write write
Full name
instantly.instantly_create_lead
ParameterTypeRequiredDescription
email string yes Lead email
campaign_id string no Campaign ID
list_id string no List ID
first_name string no First name
last_name string no Last name
company_name string no Company
website string no Website
phone string no Phone

instantly_create_lead_label

Create a new lead label (custom interest status).

Operation
Write write
Full name
instantly.instantly_create_lead_label
ParameterTypeRequiredDescription
label_name string yes Label name
color string no Hex color
icon string no Icon name
value integer no Numeric value

instantly_create_lead_list

Create a new lead list.

Operation
Write write
Full name
instantly.instantly_create_lead_list
ParameterTypeRequiredDescription
name string yes List name

instantly_create_sales_flow

Create a sales flow.

Operation
Write write
Full name
instantly.instantly_create_sales_flow
ParameterTypeRequiredDescription
body string no JSON sales flow definition

instantly_create_subsequence

Create a new subsequence for a campaign.

Operation
Write write
Full name
instantly.instantly_create_subsequence
ParameterTypeRequiredDescription
parent_campaign string yes Campaign ID
name string yes Subsequence name
conditions string yes JSON trigger conditions
subsequence_schedule string yes JSON schedule config
sequences string yes JSON sequences array

instantly_create_webhook

Create a new webhook subscription.

Operation
Write write
Full name
instantly.instantly_create_webhook
ParameterTypeRequiredDescription
target_hook_url string yes Target URL
event_type string no Event type (e.g. lead_interested)
campaign string no Campaign ID filter
name string no Webhook name

instantly_create_whitelabel

Set the agency domain (whitelabel) for the workspace.

Operation
Write write
Full name
instantly.instantly_create_whitelabel
ParameterTypeRequiredDescription
domain string yes Agency domain

instantly_create_workspace_group_member

Create or invite a workspace group member.

Operation
Write write
Full name
instantly.instantly_create_workspace_group_member
ParameterTypeRequiredDescription
email string yes Member email

instantly_create_workspace_member

Invite a new member to the workspace.

Operation
Write write
Full name
instantly.instantly_create_workspace_member
ParameterTypeRequiredDescription
email string yes Member email
role string yes Role (admin, member)

instantly_ctd_status

Get custom tracking domain (CTD) status. Check SSL and CNAME configuration.

Operation
Read read
Full name
instantly.instantly_ctd_status
ParameterTypeRequiredDescription
host string yes Tracking domain host

instantly_delete_account

Delete an email account by ID.

Operation
Write write
Full name
instantly.instantly_delete_account
ParameterTypeRequiredDescription
id string yes Account ID

instantly_delete_all_blocklist_entries

Delete all block list entries matching optional filters. Requires confirm=true.

Operation
Write write
Full name
instantly.instantly_delete_all_blocklist_entries
ParameterTypeRequiredDescription
confirm boolean yes Must be true to perform this destructive operation
domains_only boolean no Only delete domain blocklist entries
search string no Only delete entries matching this value

instantly_delete_api_key

Delete an API key by ID.

Operation
Write write
Full name
instantly.instantly_delete_api_key
ParameterTypeRequiredDescription
id string yes API key ID

instantly_delete_blocklist_entry

Remove an entry from the blocklist.

Operation
Write write
Full name
instantly.instantly_delete_blocklist_entry
ParameterTypeRequiredDescription
id string yes Entry ID

instantly_delete_campaign

Delete a campaign by ID.

Operation
Write write
Full name
instantly.instantly_delete_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID

instantly_delete_custom_prompt_template

Delete a custom prompt template.

Operation
Write write
Full name
instantly.instantly_delete_custom_prompt_template
ParameterTypeRequiredDescription
id string yes Template ID

instantly_delete_custom_tag

Delete a custom tag by ID.

Operation
Write write
Full name
instantly.instantly_delete_custom_tag
ParameterTypeRequiredDescription
id string yes Tag ID

instantly_delete_email

Delete an email.

Operation
Write write
Full name
instantly.instantly_delete_email
ParameterTypeRequiredDescription
id string yes Email ID

instantly_delete_email_template

Delete an email template.

Operation
Write write
Full name
instantly.instantly_delete_email_template
ParameterTypeRequiredDescription
id string yes Template ID

instantly_delete_inbox_placement_test

Delete an inbox placement test.

Operation
Write write
Full name
instantly.instantly_delete_inbox_placement_test
ParameterTypeRequiredDescription
id string yes Test ID

instantly_delete_lead

Delete a lead by ID.

Operation
Write write
Full name
instantly.instantly_delete_lead
ParameterTypeRequiredDescription
id string yes Lead ID

instantly_delete_lead_label

Delete a lead label.

Operation
Write write
Full name
instantly.instantly_delete_lead_label
ParameterTypeRequiredDescription
id string yes Label ID
new_label string no Label ID to reassign leads to

instantly_delete_lead_list

Delete a lead list by ID.

Operation
Write write
Full name
instantly.instantly_delete_lead_list
ParameterTypeRequiredDescription
id string yes List ID

instantly_delete_phone_number

Delete a CRM phone number.

Operation
Write write
Full name
instantly.instantly_delete_phone_number
ParameterTypeRequiredDescription
id string yes Phone number ID

instantly_delete_sales_flow

Delete a sales flow.

Operation
Write write
Full name
instantly.instantly_delete_sales_flow
ParameterTypeRequiredDescription
id string yes Sales flow ID

instantly_delete_subsequence

Delete a subsequence by ID.

Operation
Write write
Full name
instantly.instantly_delete_subsequence
ParameterTypeRequiredDescription
id string yes Subsequence ID

instantly_delete_webhook

Delete a webhook by ID.

Operation
Write write
Full name
instantly.instantly_delete_webhook
ParameterTypeRequiredDescription
id string yes Webhook ID

instantly_delete_whitelabel

Delete the whitelabel domain.

Operation
Write write
Full name
instantly.instantly_delete_whitelabel
ParameterTypeRequiredDescription
No parameters.

instantly_delete_workspace_group_member

Delete a workspace group member.

Operation
Write write
Full name
instantly.instantly_delete_workspace_group_member
ParameterTypeRequiredDescription
id string yes Member ID

instantly_delete_workspace_member

Remove a member from the workspace.

Operation
Write write
Full name
instantly.instantly_delete_workspace_member
ParameterTypeRequiredDescription
id string yes Member ID

instantly_deliverability_insights

Get deliverability insights for an inbox placement test.

Operation
Read read
Full name
instantly.instantly_deliverability_insights
ParameterTypeRequiredDescription
test_id string yes Test ID
date_from string no Start date
date_to string no End date
previous_date_from string no Previous start
previous_date_to string no Previous end
show_previous boolean no Show comparison
recipient_geo string no Geo filter
recipient_type string no Type filter
recipient_esp string no ESP filter

instantly_download_blocklist_entries

Download block list entries as CSV text.

Operation
Read read
Full name
instantly.instantly_download_blocklist_entries
ParameterTypeRequiredDescription
domains_only boolean no Only include domain blocklist entries
search string no Only include entries matching this value

instantly_duplicate_campaign

Duplicate a campaign.

Operation
Write write
Full name
instantly.instantly_duplicate_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID to duplicate
name string no Name for the copy

instantly_duplicate_subsequence

Duplicate a subsequence to the same or different campaign.

Operation
Write write
Full name
instantly.instantly_duplicate_subsequence
ParameterTypeRequiredDescription
id string yes Subsequence ID
parent_campaign string yes Target campaign ID
name string yes Name for copy

instantly_email_unread_count

Get the count of unread emails.

Operation
Read read
Full name
instantly.instantly_email_unread_count
ParameterTypeRequiredDescription
No parameters.

instantly_email_verification_status

Get email verification status for an address.

Operation
Read read
Full name
instantly.instantly_email_verification_status
ParameterTypeRequiredDescription
email string yes Email address

instantly_enrichment_count_leads

Count leads matching SuperSearch filters without importing them.

Operation
Read read
Full name
instantly.instantly_enrichment_count_leads
ParameterTypeRequiredDescription
search_filters string yes JSON search filters

instantly_enrichment_enrich_leads

Enrich leads from SuperSearch. Import and enrich leads matching your search filters.

Operation
Read read
Full name
instantly.instantly_enrichment_enrich_leads
ParameterTypeRequiredDescription
search_filters string yes JSON search filters
limit integer yes Max leads to import

instantly_enrichment_history

Retrieve enrichment history for a resource.

Operation
Read read
Full name
instantly.instantly_enrichment_history
ParameterTypeRequiredDescription
resource_id string yes Resource ID

instantly_enrichment_preview_leads

Preview leads matching SuperSearch filters without importing.

Operation
Read read
Full name
instantly.instantly_enrichment_preview_leads
ParameterTypeRequiredDescription
search_filters string yes JSON search filters

instantly_export_campaign

Export a campaign to JSON format.

Operation
Read read
Full name
instantly.instantly_export_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID

instantly_forward_email

Forward an email.

Operation
Write write
Full name
instantly.instantly_forward_email
ParameterTypeRequiredDescription
lead_id string yes Lead ID
campaign_id string yes Campaign ID
forward_to string yes Recipient email
forward_body string no Forward note

instantly_get_account

Get an email account by ID with full details including warmup status, sending limits, and vitals.

Operation
Read read
Full name
instantly.instantly_get_account
ParameterTypeRequiredDescription
id string yes Account ID

instantly_get_account_mappings

Get campaigns associated with an email account.

Operation
Read read
Full name
instantly.instantly_get_account_mappings
ParameterTypeRequiredDescription
email string yes Account email
limit integer no Items per page
starting_after string no Pagination cursor

instantly_get_background_job

Get a background job by ID.

Operation
Read read
Full name
instantly.instantly_get_background_job
ParameterTypeRequiredDescription
id string yes Job ID
data_fields string no Comma-separated data fields

instantly_get_blocklist_entry

Get a blocklist entry by ID.

Operation
Read read
Full name
instantly.instantly_get_blocklist_entry
ParameterTypeRequiredDescription
id string yes Entry ID

instantly_get_campaign

Get a campaign by ID with full details.

Operation
Read read
Full name
instantly.instantly_get_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID

instantly_get_custom_prompt_template

Get a custom prompt template by ID.

Operation
Read read
Full name
instantly.instantly_get_custom_prompt_template
ParameterTypeRequiredDescription
id string yes Template ID

instantly_get_custom_tag

Get a custom tag by ID.

Operation
Read read
Full name
instantly.instantly_get_custom_tag
ParameterTypeRequiredDescription
id string yes Tag ID

instantly_get_email

Get an email by ID.

Operation
Read read
Full name
instantly.instantly_get_email
ParameterTypeRequiredDescription
id string yes Email ID

instantly_get_email_template

Get an email template by ID.

Operation
Read read
Full name
instantly.instantly_get_email_template
ParameterTypeRequiredDescription
id string yes Template ID

instantly_get_enrichment

Get enrichment settings for a resource (campaign or lead list).

Operation
Read read
Full name
instantly.instantly_get_enrichment
ParameterTypeRequiredDescription
resource_id string yes Campaign or lead list ID

instantly_get_inbox_placement_analytics

Get a single inbox placement analytics entry.

Operation
Read read
Full name
instantly.instantly_get_inbox_placement_analytics
ParameterTypeRequiredDescription
id string yes Analytics entry ID

instantly_get_inbox_placement_report

Get an inbox placement report by ID.

Operation
Read read
Full name
instantly.instantly_get_inbox_placement_report
ParameterTypeRequiredDescription
id string yes Report ID

instantly_get_inbox_placement_test

Get an inbox placement test by ID.

Operation
Read read
Full name
instantly.instantly_get_inbox_placement_test
ParameterTypeRequiredDescription
id string yes Test ID
with_metadata boolean no Include metadata

instantly_get_lead

Get a lead by ID.

Operation
Read read
Full name
instantly.instantly_get_lead
ParameterTypeRequiredDescription
id string yes Lead ID

instantly_get_lead_label

Get a lead label by ID.

Operation
Read read
Full name
instantly.instantly_get_lead_label
ParameterTypeRequiredDescription
id string yes Label ID

instantly_get_lead_list

Get a lead list by ID.

Operation
Read read
Full name
instantly.instantly_get_lead_list
ParameterTypeRequiredDescription
id string yes List ID

instantly_get_oauth_session_status

Get the status of a Google or Microsoft OAuth account connection session.

Operation
Read read
Full name
instantly.instantly_get_oauth_session_status
ParameterTypeRequiredDescription
session_id string yes OAuth session ID returned by the init endpoint

instantly_get_sales_flow

Get a sales flow by ID.

Operation
Read read
Full name
instantly.instantly_get_sales_flow
ParameterTypeRequiredDescription
id string yes Sales flow ID

instantly_get_webhook

Get a webhook by ID.

Operation
Read read
Full name
instantly.instantly_get_webhook
ParameterTypeRequiredDescription
id string yes Webhook ID

instantly_get_webhook_event

Get a webhook event by ID.

Operation
Read read
Full name
instantly.instantly_get_webhook_event
ParameterTypeRequiredDescription
id string yes Event ID

instantly_get_whitelabel

Get whitelabel domain information.

Operation
Read read
Full name
instantly.instantly_get_whitelabel
ParameterTypeRequiredDescription
No parameters.

instantly_get_workspace

Get current workspace details based on your API key.

Operation
Read read
Full name
instantly.instantly_get_workspace
ParameterTypeRequiredDescription
No parameters.

instantly_get_workspace_group_member

Get a workspace group member by ID.

Operation
Read read
Full name
instantly.instantly_get_workspace_group_member
ParameterTypeRequiredDescription
id string yes Member ID

instantly_get_workspace_group_members_admin

Get admin workspace group members.

Operation
Read read
Full name
instantly.instantly_get_workspace_group_members_admin
ParameterTypeRequiredDescription
No parameters.

instantly_get_workspace_member

Get a workspace member by ID.

Operation
Read read
Full name
instantly.instantly_get_workspace_member
ParameterTypeRequiredDescription
id string yes Member ID

instantly_inbox_placement_esp_options

Get available email service provider options for inbox placement tests.

Operation
Read read
Full name
instantly.instantly_inbox_placement_esp_options
ParameterTypeRequiredDescription
No parameters.

instantly_inbox_placement_stats_by_date

Get time series stats for inbox placement (inbox/spam/category distribution).

Operation
Read read
Full name
instantly.instantly_inbox_placement_stats_by_date
ParameterTypeRequiredDescription
test_id string yes Test ID
date_from string no Start date
date_to string no End date
recipient_geo string no Geo filter
recipient_type string no Type filter
recipient_esp string no ESP filter
sender_email string no Sender email filter

instantly_inbox_placement_stats_by_test

Get aggregated inbox/spam/category counts for test IDs.

Operation
Read read
Full name
instantly.instantly_inbox_placement_stats_by_test
ParameterTypeRequiredDescription
test_ids string yes Comma-separated test IDs
date_from string no Start date
date_to string no End date
recipient_geo string no Geo filter
recipient_type string no Type filter
recipient_esp string no ESP filter
sender_email string no Sender email filter

instantly_initialize_google_oauth

Initialize a Google OAuth account connection flow and return the authorization URL.

Operation
Read read
Full name
instantly.instantly_initialize_google_oauth
ParameterTypeRequiredDescription
No parameters.

instantly_initialize_microsoft_oauth

Initialize a Microsoft OAuth account connection flow and return the authorization URL.

Operation
Read read
Full name
instantly.instantly_initialize_microsoft_oauth
ParameterTypeRequiredDescription
No parameters.

instantly_lead_list_verification_stats

Get email verification statistics for a lead list.

Operation
Read read
Full name
instantly.instantly_lead_list_verification_stats
ParameterTypeRequiredDescription
id string yes List ID

instantly_list_accounts

List all email accounts in the workspace. Returns email, status, warmup status, and sending limits.

Operation
Read read
Full name
instantly.instantly_list_accounts
ParameterTypeRequiredDescription
limit integer no Items per page (1-100)
starting_after string no Pagination cursor
search string no Search by email
status integer no Filter by status

instantly_list_api_keys

List all API keys in the workspace.

Operation
Read read
Full name
instantly.instantly_list_api_keys
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor

instantly_list_audit_logs

List audit log records for tracking workspace activities.

Operation
Read read
Full name
instantly.instantly_list_audit_logs
ParameterTypeRequiredDescription
limit integer no Items per page (1-1000)
starting_after string no Pagination cursor
activity_type integer no Activity type filter
search string no Search term
start_date string no Start date
end_date string no End date

instantly_list_background_jobs

List background jobs. Track long-running tasks like bulk imports and exports.

Operation
Read read
Full name
instantly.instantly_list_background_jobs
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
ids string no Comma-separated job IDs
type string no Job type
entity_type string no Entity type
entity_id string no Entity ID
status string no Status filter
sort_column string no Sort column
sort_order string no Sort order (asc/desc)

instantly_list_blocklist

List all blocklist entries (blocked emails and domains).

Operation
Read read
Full name
instantly.instantly_list_blocklist
ParameterTypeRequiredDescription
limit integer no Items per page (1-100)
starting_after string no Pagination cursor
domains_only boolean no Only show domains
search string no Search by email/domain

instantly_list_campaigns

List all campaigns in the workspace.

Operation
Read read
Full name
instantly.instantly_list_campaigns
ParameterTypeRequiredDescription
limit integer no Items per page (1-100)
starting_after string no Pagination cursor
status integer no 0=Draft,1=Active,2=Paused,3=Completed
search string no Search by name

instantly_list_custom_prompt_templates

List custom prompt templates.

Operation
Read read
Full name
instantly.instantly_list_custom_prompt_templates
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
search string no Search by name

instantly_list_custom_tag_mappings

List custom tag mappings showing which tags are on which resources.

Operation
Read read
Full name
instantly.instantly_list_custom_tag_mappings
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
resource_ids string no Comma-separated resource IDs

instantly_list_custom_tags

List custom tags used to organize accounts and campaigns.

Operation
Read read
Full name
instantly.instantly_list_custom_tags
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
search string no Search by label
resource_ids string no Comma-separated resource IDs
tag_ids string no Comma-separated tag IDs

instantly_list_dfy_accounts

List DFY ordered email accounts.

Operation
Read read
Full name
instantly.instantly_list_dfy_accounts
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
with_passwords boolean no Include passwords

instantly_list_dfy_orders

List DFY email account orders.

Operation
Read read
Full name
instantly.instantly_list_dfy_orders
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor

instantly_list_email_templates

List email templates.

Operation
Read read
Full name
instantly.instantly_list_email_templates
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
search string no Search by name

instantly_list_emails

List emails from the Unibox (unified inbox).

Operation
Read read
Full name
instantly.instantly_list_emails
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
search string no Search by email
campaign_id string no Filter by campaign
label integer no Filter by label
assigned_to string no Filter by assignee
type string no Email type filter

instantly_list_inbox_placement_analytics

List inbox placement analytics for a test.

Operation
Read read
Full name
instantly.instantly_list_inbox_placement_analytics
ParameterTypeRequiredDescription
test_id string yes Test ID
limit integer no Items per page
starting_after string no Pagination cursor
date_from string no Start date
date_to string no End date
recipient_geo string no Geo filter (comma-separated)
recipient_type string no Type filter (comma-separated)
recipient_esp string no ESP filter (comma-separated)

instantly_list_inbox_placement_reports

List inbox placement blacklist and SpamAssassin reports.

Operation
Read read
Full name
instantly.instantly_list_inbox_placement_reports
ParameterTypeRequiredDescription
test_id string yes Test ID
limit integer no Items per page
starting_after string no Pagination cursor
date_from string no Start date
date_to string no End date
skip_spam_assassin_report boolean no Skip SpamAssassin report
skip_blacklist_report boolean no Skip blacklist report

instantly_list_inbox_placement_tests

List inbox placement tests.

Operation
Read read
Full name
instantly.instantly_list_inbox_placement_tests
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
search string no Search filter
status integer no Status filter
sort_order string no Sort order

instantly_list_lead_labels

List all lead labels (interest statuses) in the workspace.

Operation
Read read
Full name
instantly.instantly_list_lead_labels
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor

instantly_list_lead_lists

List all lead lists in the workspace.

Operation
Read read
Full name
instantly.instantly_list_lead_lists
ParameterTypeRequiredDescription
limit integer no Items per page (1-100)
starting_after string no Pagination cursor
search string no Search by name

instantly_list_leads

List leads in a campaign or list.

Operation
Read read
Full name
instantly.instantly_list_leads
ParameterTypeRequiredDescription
campaign_id string no Campaign ID
list_id string no List ID
limit integer no Items per page (1-100)
starting_after string no Pagination cursor
search string no Search by email

instantly_list_phone_numbers

List CRM phone numbers.

Operation
Read read
Full name
instantly.instantly_list_phone_numbers
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor

instantly_list_sales_flows

List sales flows.

Operation
Read read
Full name
instantly.instantly_list_sales_flows
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor

instantly_list_subsequences

List all subsequences for a campaign.

Operation
Read read
Full name
instantly.instantly_list_subsequences
ParameterTypeRequiredDescription
parent_campaign string yes Campaign ID
limit integer no Items per page
starting_after string no Pagination cursor
search string no Search by name

instantly_list_webhook_events

List webhook events.

Operation
Read read
Full name
instantly.instantly_list_webhook_events
ParameterTypeRequiredDescription
limit integer no Items per page (1-100)
starting_after string no Pagination cursor
success boolean no Filter by success
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)
search string no Search by URL or email

instantly_list_webhooks

List all webhooks in the workspace.

Operation
Read read
Full name
instantly.instantly_list_webhooks
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor
campaign string no Filter by campaign
event_type string no Filter by event type

instantly_list_workspace_group_members

List workspace group members.

Operation
Read read
Full name
instantly.instantly_list_workspace_group_members
ParameterTypeRequiredDescription
limit integer no Items per page
starting_after string no Pagination cursor

instantly_list_workspace_members

List all workspace members.

Operation
Read read
Full name
instantly.instantly_list_workspace_members
ParameterTypeRequiredDescription
No parameters.

instantly_mark_account_fixed

Mark an email account as fixed after resolving connection or sending errors.

Operation
Write write
Full name
instantly.instantly_mark_account_fixed
ParameterTypeRequiredDescription
email string yes Email to mark fixed

instantly_mark_email_read

Mark an email thread as read.

Operation
Write write
Full name
instantly.instantly_mark_email_read
ParameterTypeRequiredDescription
thread_id string yes Thread ID

instantly_merge_leads

Merge two leads into one.

Operation
Write write
Full name
instantly.instantly_merge_leads
ParameterTypeRequiredDescription
lead_id string yes Source lead ID
destination_lead_id string yes Destination lead ID

instantly_move_accounts

Move email accounts between workspaces. Requires an admin workspace API key.

Operation
Write write
Full name
instantly.instantly_move_accounts
ParameterTypeRequiredDescription
emails array yes Email accounts to move
source_workspace_id string yes Workspace ID the accounts currently belong to
destination_workspace_id string yes Workspace ID the accounts should be moved to

instantly_move_leads

Move leads between campaigns.

Operation
Write write
Full name
instantly.instantly_move_leads
ParameterTypeRequiredDescription
lead_ids string yes Comma-separated lead IDs
from_campaign_id string no Source campaign ID
to_campaign_id string yes Destination campaign ID

instantly_pause_account

Pause an email account. Stops sending until resumed.

Operation
Write write
Full name
instantly.instantly_pause_account
ParameterTypeRequiredDescription
email string yes Email to pause

instantly_pause_campaign

Pause a running campaign.

Operation
Write write
Full name
instantly.instantly_pause_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID

instantly_pause_subsequence

Pause a subsequence.

Operation
Write write
Full name
instantly.instantly_pause_subsequence
ParameterTypeRequiredDescription
id string yes Subsequence ID

instantly_pre_warmed_domains

Get pre-warmed up domains available for order.

Operation
Read read
Full name
instantly.instantly_pre_warmed_domains
ParameterTypeRequiredDescription
extensions string no Comma-separated extensions (com,org,co)
search string no Search filter

instantly_remove_from_subsequence

Remove a lead from a subsequence.

Operation
Write write
Full name
instantly.instantly_remove_from_subsequence
ParameterTypeRequiredDescription
id string yes Lead ID

instantly_reply_to_email

Reply to an email thread.

Operation
Write write
Full name
instantly.instantly_reply_to_email
ParameterTypeRequiredDescription
lead_id string yes Lead ID
campaign_id string yes Campaign ID
account_email string no Sender email
reply_body string yes Reply content

instantly_resume_account

Resume a paused email account.

Operation
Write write
Full name
instantly.instantly_resume_account
ParameterTypeRequiredDescription
email string yes Email to resume

instantly_resume_subsequence

Resume a paused subsequence.

Operation
Write write
Full name
instantly.instantly_resume_subsequence
ParameterTypeRequiredDescription
id string yes Subsequence ID

instantly_resume_webhook

Resume a disabled webhook.

Operation
Write write
Full name
instantly.instantly_resume_webhook
ParameterTypeRequiredDescription
id string yes Webhook ID

instantly_run_enrichment

Run enrichment for a campaign or lead list.

Operation
Write write
Full name
instantly.instantly_run_enrichment
ParameterTypeRequiredDescription
resource_id string yes Resource ID
lead_ids string no Comma-separated lead IDs

instantly_search_campaigns_by_contact

Find campaigns containing a specific lead email.

Operation
Read read
Full name
instantly.instantly_search_campaigns_by_contact
ParameterTypeRequiredDescription
search string yes Lead email to search
sort_column string no Sort column
sort_order string no Sort order (asc/desc)

instantly_send_test_email

Send a preview/test email from a connected email account without creating an Unibox email.

Operation
Write write
Full name
instantly.instantly_send_test_email
ParameterTypeRequiredDescription
eaccount string yes Connected sender email account
to_address_email_list string yes Comma-separated recipient email addresses
subject string yes Test email subject
html string yes HTML body of the test email
text string no Optional text body

instantly_share_campaign

Share a campaign so other users can create a new campaign from it.

Operation
Read read
Full name
instantly.instantly_share_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID

instantly_similar_domains

Get similar domains for DFY orders.

Operation
Read read
Full name
instantly.instantly_similar_domains
ParameterTypeRequiredDescription
body string no JSON request body

instantly_subsequence_move_leads

Move leads to a subsequence.

Operation
Write write
Full name
instantly.instantly_subsequence_move_leads
ParameterTypeRequiredDescription
lead_ids string yes Comma-separated lead IDs
subsequence_id string yes Target subsequence ID

instantly_subsequence_sending_status

Get the sending status of a subsequence.

Operation
Read read
Full name
instantly.instantly_subsequence_sending_status
ParameterTypeRequiredDescription
id string yes Subsequence ID
with_ai_summary boolean no Include AI summary

instantly_test_ai_label

Test AI reply label prediction. Returns predicted label for a given reply text.

Operation
Write write
Full name
instantly.instantly_test_ai_label
ParameterTypeRequiredDescription
reply_text string yes Reply text to classify

instantly_test_vitals

Test account vitals (DNS, SMTP, IMAP connectivity). Returns diagnostic results.

Operation
Write write
Full name
instantly.instantly_test_vitals
ParameterTypeRequiredDescription
accounts array no Email accounts to test. If omitted, Instantly tests available accounts.
email string no Deprecated single email shortcut. Prefer accounts.

instantly_test_webhook

Send a test payload to a webhook.

Operation
Write write
Full name
instantly.instantly_test_webhook
ParameterTypeRequiredDescription
id string yes Webhook ID

instantly_toggle_custom_tags

Assign or unassign tags to resources (accounts or campaigns).

Operation
Write write
Full name
instantly.instantly_toggle_custom_tags
ParameterTypeRequiredDescription
tag_ids string yes Comma-separated tag IDs
resource_ids string yes Comma-separated resource IDs
resource_type integer yes Resource type
assign boolean yes true=assign, false=unassign

instantly_update_account

Update an email account. Modify daily limit, tracking domain, signature, and more.

Operation
Write write
Full name
instantly.instantly_update_account
ParameterTypeRequiredDescription
email string yes Account email
first_name string no First name
last_name string no Last name
daily_limit integer no Daily sending limit
tracking_domain_name string no Tracking domain
enable_slow_ramp boolean no Enable slow ramp up
sending_gap integer no Minutes between emails (0-1440)
signature string no Email signature
remove_tracking_domain boolean no Remove tracking domain

instantly_update_blocklist_entry

Update a blocklist entry.

Operation
Write write
Full name
instantly.instantly_update_blocklist_entry
ParameterTypeRequiredDescription
id string yes Entry ID
bl_value string no New email or domain

instantly_update_campaign

Update an existing campaign configuration.

Operation
Write write
Full name
instantly.instantly_update_campaign
ParameterTypeRequiredDescription
id string yes Campaign ID
name string no Campaign name
open_tracking boolean no Open tracking
link_tracking boolean no Link tracking
text_only boolean no Plain text only
stop_on_reply boolean no Stop on reply
daily_limit integer no Max emails/day
email_gap integer no Minutes between emails
email_list array no Sender emails
sequences string no JSON sequences
campaign_schedule string no JSON schedule

instantly_update_custom_prompt_template

Update a custom prompt template.

Operation
Write write
Full name
instantly.instantly_update_custom_prompt_template
ParameterTypeRequiredDescription
id string yes Template ID
name string no Name
prompt string no Prompt text
category integer no Category
is_public boolean no Public
description string no Description
model_version string no Model version
template_type string no Type
from_shared boolean no From shared

instantly_update_custom_tag

Update a custom tag.

Operation
Write write
Full name
instantly.instantly_update_custom_tag
ParameterTypeRequiredDescription
id string yes Tag ID
label string no New label
description string no New description

instantly_update_email

Update an email (e.g., assign to a team member, update label).

Operation
Write write
Full name
instantly.instantly_update_email
ParameterTypeRequiredDescription
id string yes Email ID
assigned_to string no User ID to assign
label integer no Label value

instantly_update_email_template

Update an email template.

Operation
Write write
Full name
instantly.instantly_update_email_template
ParameterTypeRequiredDescription
id string yes Template ID
template_name string no Template name
subject string no Email subject
body string no Email body
category string no Category

instantly_update_enrichment_settings

Update enrichment settings for a resource.

Operation
Write write
Full name
instantly.instantly_update_enrichment_settings
ParameterTypeRequiredDescription
resource_id string yes Resource ID
auto_update boolean no Auto-enrich new leads
skip_rows_without_email boolean no Skip leads without email

instantly_update_inbox_placement_test

Update an inbox placement test.

Operation
Write write
Full name
instantly.instantly_update_inbox_placement_test
ParameterTypeRequiredDescription
id string yes Test ID
name string no Test name
status integer no Test status

instantly_update_lead

Update a lead.

Operation
Write write
Full name
instantly.instantly_update_lead
ParameterTypeRequiredDescription
id string yes Lead ID
first_name string no First name
last_name string no Last name
company_name string no Company
website string no Website
phone string no Phone
personalization string no Personalization text
lt_interest_status integer no Interest status
pl_value_lead string no Potential value
assigned_to string no User ID to assign

instantly_update_lead_interest_status

Update a lead interest status by lead email, optionally scoped to a campaign or list.

Operation
Write write
Full name
instantly.instantly_update_lead_interest_status
ParameterTypeRequiredDescription
lead_email string yes Lead email address
interest_value number yes Interest status value. Pass null to reset to Lead.
campaign_id string no Campaign ID to scope the update
list_id string no Lead list ID to scope the update
ai_interest_value number no AI interest value to set
disable_auto_interest boolean no Disable automatic interest updates for this lead

instantly_update_lead_label

Update a lead label.

Operation
Write write
Full name
instantly.instantly_update_lead_label
ParameterTypeRequiredDescription
id string yes Label ID
label_name string no Label name
color string no Hex color
icon string no Icon name
value integer no Numeric value

instantly_update_lead_list

Update a lead list name.

Operation
Write write
Full name
instantly.instantly_update_lead_list
ParameterTypeRequiredDescription
id string yes List ID
name string no New list name

instantly_update_sales_flow

Update a sales flow.

Operation
Write write
Full name
instantly.instantly_update_sales_flow
ParameterTypeRequiredDescription
id string yes Sales flow ID
body string no JSON update data

instantly_update_subsequence

Update a subsequence.

Operation
Write write
Full name
instantly.instantly_update_subsequence
ParameterTypeRequiredDescription
id string yes Subsequence ID
name string no New name

instantly_update_webhook

Update a webhook.

Operation
Write write
Full name
instantly.instantly_update_webhook
ParameterTypeRequiredDescription
id string yes Webhook ID
target_hook_url string no Target URL
event_type string no Event type
campaign string no Campaign ID
name string no Webhook name
custom_interest_value integer no Custom interest value

instantly_update_workspace

Update current workspace name or logo.

Operation
Write write
Full name
instantly.instantly_update_workspace
ParameterTypeRequiredDescription
name string no Workspace name
org_logo_url string no Logo URL

instantly_update_workspace_member

Update a workspace member role.

Operation
Write write
Full name
instantly.instantly_update_workspace_member
ParameterTypeRequiredDescription
id string yes Member ID
role string no New role

instantly_verify_email

Verify an email address. Returns deliverability status.

Operation
Write write
Full name
instantly.instantly_verify_email
ParameterTypeRequiredDescription
email string yes Email to verify
webhook_url string no Webhook URL for results

instantly_warmup_disable

Disable warmup for email accounts.

Operation
Write write
Full name
instantly.instantly_warmup_disable
ParameterTypeRequiredDescription
account_ids array yes Account IDs to disable warmup for

instantly_warmup_enable

Enable warmup for email accounts. Gradually increases sending volume to build reputation.

Operation
Write write
Full name
instantly.instantly_warmup_enable
ParameterTypeRequiredDescription
account_ids array yes Account IDs to enable warmup for

instantly_webhook_event_types

List all available webhook event types.

Operation
Read read
Full name
instantly.instantly_webhook_event_types
ParameterTypeRequiredDescription
No parameters.

instantly_webhook_events_summary

Get overview aggregates for webhook events.

Operation
Read read
Full name
instantly.instantly_webhook_events_summary
ParameterTypeRequiredDescription
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)

instantly_webhook_events_summary_by_date

Get webhook event aggregates grouped by date.

Operation
Read read
Full name
instantly.instantly_webhook_events_summary_by_date
ParameterTypeRequiredDescription
from string no Start date (YYYY-MM-DD)
to string no End date (YYYY-MM-DD)