List all items for an exception list

Returns a list of one exception list's items.

Parameters

No parameters.

Returns

Returns an array of (exception list) item objects up to a limit dictated by @pagesize. Each entry in the array is a separate (exception list) item object. If no (exception list) item objects meet the criteria, the resulting array will be empty. This request should never return an error.

Example request

curl 'https://api.impact.com/Mediapartners/<AccountSID>/ExceptionLists/<ExceptionListId>/Items' \
  -X GET \
  -u '<AccountSID>:<AuthToken>' \
  -H 'Accept: application/json' \

Example response

{
  "@page": "1",
  ...
  "ExceptionListItems": [
    {
      "Id": "80000000",
      "Value": "Anvils",
      "Name": "White Anvil",
      "MatchMode": "EQ",
      "ListId": "00042",
      "CreatedDate": "2019-09-03T16:15:23-07:00",
      "Uri": "/Mediapartners/<AccountSID>/ExceptionLists/1000/Items/80000000"
      },
    ...
  ]
}