List all items for a promo code exception list

Returns a list of one promo code exception list's items.

Parameters


Value optional

What the promo code exception list item is searching for. This will be the PROMO CODE value that the exception list looks at.

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 (promo code 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/Advertisers/<AccountSID>/PromoCodeExceptionLists/<PromoCodeExceptionListId>/Items' \
  -X GET \
  -u '<AccountSID>:<AuthToken>' \
  -H 'Accept: application/json' \
  -d 'Value=Anvils' \

Example Response


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