GET https://restapi.actonsoftware.com/ucl/v2/{accountId}/hardbounce
This endpoint allows you to download the All Contacts hard bounce list from this account.
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
authorization | header | false | required | string |
Insert your generated access token. (Bearer {access token}) |
accountId | Path | false | required | number | Account ID where query needs to be done |
pageSize | query | false | optional | number (maximum=1000) |
Specify the number of elements to fetch. (Default=100) (Maximum=1000) |
pageNumber | query | false | optional | number |
Specify the element offset to begin the fetch. (Default=1) |
Response
{
"listId": "B",
"headers": [
"_contact_id_",
"Timestamp",
"Reason",
"Diagnostic",
"ObjectType",
"Act-On Primary Score",
"First Name",
"Last Name",
"Company",
"Department",
"Email",
"Title",
"Mailing Street",
"Mailing City",
"Mailing State/Province",
"Mailing Zip/Postal Code",
"Mailing Country",
"Other Street",
"Other City",
"Other Zip/Postal Code",
"Other Country",
"Business Phone",
"Business Fax",
"Other Phone",
"Mobile Phone",
"Website",
"Other State/Province",
"Created Date",
"Modified Date"
],
"search": null,
"offset": 1,
"data": [
[
"l-unified-contacts:315",
"Wed May 04 2022, 02:42 PM",
"bad-mailbox",
"SMTP;550-5.1.1 The email account that you tried to reach does not exist. Please try",
"Lead",
"0",
"Jane",
"Doe",
"Act-On",
"",
"jane.doe@act-on.com",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"Aug 30 2022 13:06 Pacific/Marquesas",
"Aug 30 2022 13:45 Pacific/Marquesas"
],
"hasNextPage": false,
"count": 100,
"t
Code Examples
cURL
curl -X GET https://restapi.actonsoftware.com/ucl/v2/{accountId}/hardbounce -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"