Retrieves the object of an existing exception list. You need to pass the unique impact.com exception list Id
value that was returned upon exception list creation or when listing exception lists.
Parameters
No parameters.
Returns
Returns an exception list object if a valid identifier is provided. Returns an error for invalid exception list identifiers.
Example Request
curl 'https://api.impact.com/Advertisers/<AccountSID>/ExceptionLists/10000' \
-X GET \
-u '<AccountSID>:<AuthToken>' \
-H "Accept: application/json'
Example Response
{
"Id": "10000",
"Name": "WhiteAnvils",
"State": "ACTIVE",
"CampaignId": "1000",
"Type": "CATEGORY",
"CreatedDate": "2019-09-03T16:15:02-07:00",
"DeactivationDate": "",
"ActionTrackers": [
{
"Id": "12345",
"Name": "Online Sale"
}
],
"NumberOfItems": "2",
"ItemsUri": "/Advertisers/<AccountSID>/ExceptionLists/10000/Items",
"Uri": "/Advertisers/<AccountSID>/ExceptionLists/10000"
}