Return Back to API List
API Call Information
area: email
action: addemail
API Arguments
API Url Example:
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=addemail&id=12345&email=test@test.com
API Call Result:
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 |
| string | Yes | email address to add to the list. |
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=addemail&id=12345&email=test@test.com
API Call Result:
| XML Response | JSON Response |
| <response> <success>Email Added to List</success> <id>22</id> </response> |
{
"success": "Email Added to List",
"id": "22"
} |