Murlist.com | Help
  • What is Murlist.com?
  • Drip campaign
    • How it works
    • How to create a drip campaign
    • Add an email account
    • Custom domain
      • How to setup domain or subdomain for email tracking
      • How to setup domain or subdomain for video landing page
  • Email Warming
    • Setup & configuration guide
      • How to set up email warming
      • Configure GSuite/Gmail
      • Configure Zoho IMAP & SMTP
      • Configure Microsoft Office 365
      • Configure AWS SES
      • Configure SendGrid
      • Configure MailGun
      • Configure Yahoo Mail
    • How to create inbox filter
      • Create a Filter Gmail/Gsuite
    • Common errors
      • Connection errors
        • Google SMTP error
        • Errors with port 25
        • Help fixing connection issues
  • Video Emails
    • How to send video cold emails.
      • How to create media list
      • Creating a campaign with video email
  • Email Verification
    • Email verification
    • How to download email list after verification
    • Analytics for email verify result.
  • Lead Engine
    • What is Lead Engine
    • Web leads
      • How does web leads work?
      • How to create web property
      • How to integrate web leads pixel
  • Mailbox configurations
    • Configure SPF, DKIM & DMARC
      • How to set up Google workspace SPF, DKIM & DMARC
  • API documentations
    • Zapier Intergation
    • API Authentication
    • Email Validation API
    • Campaign API
      • List all campaigns
      • Add prospect to campaign
Powered by GitBook
On this page

Was this helpful?

  1. API documentations
  2. Campaign API

Add prospect to campaign

Add new prospect to an existing campaign

PreviousList all campaigns

Last updated 3 years ago

Was this helpful?

Endpoint:

https://api.murlist.com/campaign/prospects/add

Required data:

In the request body, include data as follows:

{
    "campaign": "txxxxxxsiidoS8w8YER7xxxxxZBFV", //the campaign Id
    "prospect_email": "ik82i@yahoo.com", 
    "other_fields": {"name": " Ikenna Paschal", "anyKey": "anyValue"},
    "verify_email": true //false
}

Understanding the required data:

campaign: This should be the id of the campaign you want to add the prospect to. This can be gotten by calling the which returns campaigns and their ids

prospect_email: This should be the email of the prospect you wish to add to an existing campaign.

other_fields: This should be an object(dictionary) of other attributes of this prospect like age, name, location. A combination of key/value pairs. These attributes are used in personalization.

verify_email: This verifies the prospect's email before adding them to a campaign if set to true and will skip verification if set to false. important to mention that the decision to send to prospect based on the verification status is made at the campaign level, during the campaign creation configuration.

What this API returns:

On successful addition, the API should return a status code 201, with the message, "Added successfully".

If you need any help in implementing this API, be sure to reach out to us at support@murlist.com. We are always happy to help.

list campaign API