Gets a list of hard bounces from a list given the listid.
| Argument | Data Type | Required | Description |
| id | integer | Yes | list id |
| start | integer | No | Starting position |
| limit | integer | No | Number of records to return |
| 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"
}
} |