Hyreflow
Integrations

Instantly

Campaign activation and lightweight outbound reporting.

Use Instantly for campaign activation and lightweight outbound reporting. Free on Hyreflow — like all sequencers.

Free on Hyreflow (0 credits) — runs on your own connected Instantly account (no data-reveal cost).

Guidance

  • Resolve campaign IDs from list_campaigns before any add operation.
  • Timezones: don't brute-force guesses for instantly_create_campaign. Reuse a known-good timezone from an existing campaign via instantly_get_campaign. If a requested timezone isn't accepted, map to the closest supported value (e.g. America/Detroit for America/New_York). Treat literal UTC as unsupported — use a supported UTC-equivalent enum from an existing campaign.
  • Schedule days: campaign_schedule.schedules[].days uses numeric keys ("0".."6"). Named weekdays are normalized; values outside sunday..saturday are rejected.
  • list_leads accepts campaign and campaign_id (alias), plus list_id, in_campaign, in_list, search. Omit all filters to list globally.
  • Insert in controlled batches and re-check campaign stats after writes.

Keep activation behind enrichment/verification gates to reduce low-quality sends. Building a campaign is free; sending is approval-gated — confirm sender, draft, and lead list first. See Campaign Plays.

hyreflow tools execute instantly list_campaigns --payload '{}'
hyreflow tools execute instantly add_leads_bulk \
  --payload '{"leads":[{"email":"[email protected]","first_name":"Ada","last_name":"Lovelace","company_name":"Babbage Ltd"}],"campaign_id":"abc-123"}'

On this page