Update an exception list

Updates the specified 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 exception list.


Name optional

Name of the exception list.


Type optional

What the exception list looks to apply to.

View possible enum values
CATEGORYException list looks at the category an item is in.
SKUException list looks for the ProductIds listed within its configuration.

Returns


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

Example Request


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

Example Response


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