Our API provides a way to integrate your system,
such as CRM, CMS or Shopping Cart System, with our email marketing system.
1) Retrieve all the contact lists
http(s)://edm-emailmarketing.edmsend.com/api/<api_key>/list
Response
{
"totalRecords": 30,
"lists": [
{
"total": 2,
"id": 41,
"valid": 1,
"unsubscribed": 0,
"description": "",
"name": "email list 1",
"bounced": 1,
"createDt": "2010-07-27 09:19 AM"
},
{
"total": 100,
"id": 56,
"valid": 100,
"unsubscribed": 0,
"description": "",
"name": "email list 2",
"bounced": 0,
"createDt": "2010-10-15 04:11 PM"
},
...
]
}
2) Subscribe to list
http(s)://edm-emailmarketing.edmsend.com/api/<api_key>/subscribe?listId=<list_id>
&email=<email_address>
Response
{
"success": true,
"responseCode": 1,
"message": "Successfully subscribed"
}