I have created a workflow for certification campaign generation. In the workflow I have used the create certification campaign action and I have selected the reviewer type as individual and certification type as access certification and access type as entitlement now I am able to generate a certification but I am not able to identify how the access items and identities are included in certification.
I had the same issue. “Create Certification Campaign” step of workflow doesn’t give the flexibility of specifying the required access profiles or type. When reviewer type is selected as individual, all the roles, access profiles and entitlements(which are not part of access profiles) are presented for review.
If you are looking to initiate a certification for the specific access and for individual, I would suggest you to use http action and use the API to achieve it.
POST https://.api.identitynow.com/beta/campaigns
You can define in the accessContraints for the type(like access profile) and reviewer id etc.
Only con with this approach is, you need to another step to explicitly activate the campaign based on its campaign id. I used a wait step in between usually as it takes time to generate the campaign.
I believe you can use campaign filter to select the access items you want to include. But in workflow “create campaign” you cannot add campaign filter.
Instead of using “create campaign” action in workflow use “HTTP request” workflow and create a campaign using API.
In the body of the request you can supply the filter. Using the variable in workflow generate the body accordingly.