The Campaign Exclusion Report is disabled by default. If you need to enable it, you can use the following API. After you run this API, you can collect this data on all future certification campaigns.
CAUTION: Enabling this report can cause your campaigns to generate more slowly
See the following sections for more information:
POST <org>/cc/api/campaign/setCampaignConfiguration
{
"exclusionReportsEnabled": <true | false>
}
The current configuration can be queried using the corresponding GET API:
GET <org>/cc/api/campaign/getCampaignConfiguration
Where:
The default configuration retrieved from the org using the GET API should be:
{
"exclusionReportsEnabled": false
}
If you want to enable exclusion reports for new campaigns, post this:
{
"exclusionReportsEnabled": true
}
If you later want to disable exclusion reports for new campaigns, post this:
{
"exclusionReportsEnabled": false
}