Call us toll free @ 888-497-7898

email - createlist

Allows creating a list by passing a data containing email addresses

This works best for small lists under 1000 records. For bigger lists use the uploadlist api


API Call Information
area: email
action: createlist

API Arguments
Argument Data Type Required Description
title string Yes title of the list
emails string Yes One email address per line. Or you can insert a header row and containing multiple columns of email data.
folder integer No parent folder id
suppression boolean either 1 or 0 No zero 0 if not suppression 1 if suppression list
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=createlist&title=newlist&emails=test@test.com&suppression=0

API Result:
XML Response JSON Response
<response>
  <success>List Created</success>
  <id>145234</id>
</response>
{
    "success": "List Created",
    "id": "145234"
}