Call us toll free @ 888-497-7898

email - addemail

Adds an email to a list, when giving the list id. Also supports custom columns if they already exist in the list just pass the column name via the request.
Note: the column names are stored in our system as lowercase a-z0-9 spaces are removed.


API Call Information
area: email
action: addemail

API Arguments
Argument Data Type Required Description
id integer Yes id of the list
email string Yes email address to add to the list.
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=addemail&id=12345&email=test@test.com

API Result:
XML Response JSON Response
<response>
  <success>Email Added to List</success>
  <id>22</id>
</response>
{
    "success": "Email Added to List",
    "id": "22"
}