Return Back to API List
API Call Information
area: email
action: getlisthardbounces
API Arguments
API Url Example:
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getlisthardbounces&id=11234
API Call Result:
email - getlisthardbounces
Gets a list of hard bounces from a list given the listid.
API Call Information
area: email
action: getlisthardbounces
API Arguments
| Argument | Data Type | Required | Description |
| id | integer | Yes | list id |
| start | integer | No | Starting position |
| limit | integer | No | Number of records to return |
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getlisthardbounces&id=11234
API Call Result:
| XML Response | JSON Response |
| <response> <records>10376</records> <record><emailid>14</emailid><email>test@test.com</email><status>Address does not exist</status> </record> </response> |
{
"records": "10376",
"record": {
"emailid": "14",
"email": "test@test.com",
"status": "Address does not exist"
}
} |