> For the complete documentation index, see [llms.txt](https://integrations.impact.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://integrations.impact.com/brand-api-reference/reference/general-exception-lists/general-exception-lists.md).

# General Exception Lists

## List General Exception Lists

> Returns a list of your general exception lists, which can be filtered by campaign or state.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - General Exception Lists","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"paths":{"/Advertisers/{AccountSID}/GeneralExceptionLists":{"get":{"summary":"List General Exception Lists","description":"Returns a list of your general exception lists, which can be filtered by campaign or state.","operationId":"listGeneralExceptionLists","tags":["General Exception Lists"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}},{"name":"CampaignId","in":"query","description":"Filter by the program ID the list applies to.","schema":{"type":"integer"}},{"name":"State","in":"query","description":"Filter lists by their current state.","schema":{"type":"string","enum":["ACTIVE","CLOSED","DEACTIVATED"]}}],"responses":{"200":{"description":"A list of general exception list objects.","content":{"application/json":{"schema":{"type":"object","properties":{"GeneralExceptionLists":{"type":"array","description":"The list of general exception list objects.","items":{"$ref":"#/components/schemas/GeneralExceptionList"}}}}}}}}}}},"components":{"schemas":{"GeneralExceptionList":{"type":"object","properties":{"Id":{"type":"integer","description":"The unique identifier for the general exception list."},"Name":{"type":"string","description":"The display name for the general exception list."},"State":{"type":"string","description":"The current state of the general exception list.","enum":["ACTIVE","CLOSED","DEACTIVATED"]},"CampaignId":{"type":"integer","description":"The program ID the list applies to."},"CreatedDate":{"type":"string","description":"The date and time the list was created, in ISO 8601 format."},"DeactivationDate":{"type":"string","description":"The date and time the list was deactivated, if applicable. Returned as an empty string rather than null when not set."},"ActionTrackers":{"type":"array","description":"The event types this list applies to.","items":{"type":"object","properties":{"Id":{"type":"integer","description":"The unique identifier for the event type."},"Name":{"type":"string","description":"The display name of the event type."}}}},"NumberOfItems":{"type":"integer","description":"The total number of items in the list. This counter is not incremented when items are added via POST to the Items endpoint, so it can understate the true count after item creation — PATCH and DELETE on the Items endpoint update it correctly."},"ItemsUri":{"type":"string","format":"uri-reference","description":"The unique reference to the items collection for this list."},"Uri":{"type":"string","format":"uri-reference","description":"The unique reference to this general exception list in the impact.com API."}}}}}}
```

## Create a General Exception List

> Creates a new, empty general exception list for a specific campaign and event type.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - General Exception Lists","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"paths":{"/Advertisers/{AccountSID}/GeneralExceptionLists":{"post":{"summary":"Create a General Exception List","description":"Creates a new, empty general exception list for a specific campaign and event type.","operationId":"createGeneralExceptionList","tags":["General Exception Lists"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/GeneralExceptionListCreate"}}}},"responses":{"200":{"description":"The request was successful.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessUriResponse"}}}}}}}},"components":{"schemas":{"GeneralExceptionListCreate":{"type":"object","required":["Name","CampaignId","ActionTrackerId"],"properties":{"Name":{"type":"string","description":"The display name for the general exception list. Must be unique within the account — duplicate names are rejected."},"CampaignId":{"type":"integer","description":"The program ID the list applies to."},"ActionTrackerId":{"type":"string","description":"Comma-separated list of event type IDs. Must belong to the specified CampaignId."}}},"SuccessUriResponse":{"type":"object","properties":{"Status":{"type":"string","description":"Indicates whether the operation was successful."},"Uri":{"type":"string","format":"uri-reference","description":"The unique reference to the affected resource."}}}}}}
```

## Get General Exception List Details

> Retrieves the details of an existing general exception list by its unique ID.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - General Exception Lists","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"paths":{"/Advertisers/{AccountSID}/GeneralExceptionLists/{ListId}":{"get":{"summary":"Get General Exception List Details","description":"Retrieves the details of an existing general exception list by its unique ID.","operationId":"getGeneralExceptionListById","tags":["General Exception Lists"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}},{"name":"ListId","in":"path","required":true,"description":"The unique identifier for the general exception list.","schema":{"type":"integer"}}],"responses":{"200":{"description":"A single general exception list object.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GeneralExceptionList"}}}}}}}},"components":{"schemas":{"GeneralExceptionList":{"type":"object","properties":{"Id":{"type":"integer","description":"The unique identifier for the general exception list."},"Name":{"type":"string","description":"The display name for the general exception list."},"State":{"type":"string","description":"The current state of the general exception list.","enum":["ACTIVE","CLOSED","DEACTIVATED"]},"CampaignId":{"type":"integer","description":"The program ID the list applies to."},"CreatedDate":{"type":"string","description":"The date and time the list was created, in ISO 8601 format."},"DeactivationDate":{"type":"string","description":"The date and time the list was deactivated, if applicable. Returned as an empty string rather than null when not set."},"ActionTrackers":{"type":"array","description":"The event types this list applies to.","items":{"type":"object","properties":{"Id":{"type":"integer","description":"The unique identifier for the event type."},"Name":{"type":"string","description":"The display name of the event type."}}}},"NumberOfItems":{"type":"integer","description":"The total number of items in the list. This counter is not incremented when items are added via POST to the Items endpoint, so it can understate the true count after item creation — PATCH and DELETE on the Items endpoint update it correctly."},"ItemsUri":{"type":"string","format":"uri-reference","description":"The unique reference to the items collection for this list."},"Uri":{"type":"string","format":"uri-reference","description":"The unique reference to this general exception list in the impact.com API."}}}}}}
```

## Update a General Exception List

> Updates the specified general exception list's name or associated event type.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - General Exception Lists","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"paths":{"/Advertisers/{AccountSID}/GeneralExceptionLists/{ListId}":{"put":{"summary":"Update a General Exception List","description":"Updates the specified general exception list's name or associated event type.","operationId":"updateGeneralExceptionList","tags":["General Exception Lists"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}},{"name":"ListId","in":"path","required":true,"description":"The unique identifier for the general exception list to update.","schema":{"type":"integer"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/GeneralExceptionListUpdate"}}}},"responses":{"200":{"description":"The request was successful.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessUriResponse"}}}}}}}},"components":{"schemas":{"GeneralExceptionListUpdate":{"type":"object","properties":{"Name":{"type":"string","description":"The display name for the general exception list."},"ActionTrackerId":{"type":"string","description":"Comma-separated list of event type IDs."}}},"SuccessUriResponse":{"type":"object","properties":{"Status":{"type":"string","description":"Indicates whether the operation was successful."},"Uri":{"type":"string","format":"uri-reference","description":"The unique reference to the affected resource."}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://integrations.impact.com/brand-api-reference/reference/general-exception-lists/general-exception-lists.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
