Using Campaign Filters for Manager-Specific Certifications in a Specific Source

Hello,
Can the Campaign Filter be configured to perform a manager certification for a specific manager within a specific source? The documentation does not mention this, and it seems that the filters use an OR logic for selection rather than AND.

Currently, I’m considering using the Call API approach to achieve this. Is it possible to meet the above requirement with that method? I’d appreciate it if you could share your practical experiences on this.

HI @Dervish

No such filter option is available within the campaign settings. If you’re configuring a manager campaign with a source-specific filter, it will work in such a way that the intended manager for the identity will be the one certifying.

Hi @Dervish

In the API, you can create a campaign based on a population search query using:

POST /beta/campaigns

Template:

{
  "name": "Manager Campaign",
  "description": "Manager certification for <Manager Name> and source <Source Name>",
  "type": "MANAGER",
  "population": {
    "type": "IDENTITY_SEARCH",
    "searchQuery": "source.name:\"<Source Name>\" AND manager.id:\"<Manager Identity ID>\""
  },
  "deadline": "2025-09-01T23:59:59Z",
  "reviewers": [],
  "campaignOwner": {
    "type": "IDENTITY",
    "id": "<Your Identity ID>"
  }
}

To launch the certification, use:

POST /beta/campaigns/{campaignId}/start

Hello,

I now clearly understand the limitation, and thank you for taking the time to explain.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.