List all items for a promo code exception list

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

Parameters

No parameters.

Returns

Returns an array of (promo code 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/Mediapartners/<AccountSID>/PromoCodeExceptionLists/<PromoCodeExceptionListId>/Items' \
  -X GET \
  -u '<AccountSID>:<AuthToken>' \
  -H 'Accept: application/json' \

Example response

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