Call us toll free @ 888-497-7898

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
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getlisthardbounces&id=11234

API 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"
    }
}