Updates the specified exception list by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Parameters
ActionTrackerId
optional
ActionTrackerId
optionalComma-separated list of the event type Ids (formerly known as action tracker Ids) to be associated with this exception list.
Name
optional
Name
optionalName of the exception list.
Type
optional
Type
optionalWhat the exception list looks to apply to.
View possible enum values | |
---|---|
CATEGORY | Exception list looks at the category an item is in. |
SKU | Exception 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"
}