Update a promo code exception list

Updates the specified promo code exception list by setting the values of the parameters passed. Any parameters not provided will be left unchanged.

Parameters


ActionTrackerId optional

Comma-separated list of the event type Ids (formerly known as action tracker Ids) to be associated with this promo code exception list.


Name optional

Name of the promo code exception list.


Returns


Returns the status of the request and the URI of the newly updated promo code exception list. Returns an error if parameters are invalid.

Example Request


curl 'https://api.impact.com/Advertisers/<AccountSID>/PromoCodeExceptionLists/10001' \
  -X PUT \
  -u '<AccountSID>:<AuthToken>' \
  -H 'Accept: application/json' \
  -d 'ActionTrackerId=1000' \
  -d 'Name=Red Anvils' \

Example Response


{
  "Status": "OK",
  "Uri": "/Advertisers/<AccountSID>/Campaigns/1000/PromoCodeExceptionLists/10001"
}