Workflow to create certification campaign for only Access profile belonging one source

I want to create a certification campaign over workflow based on attribute change. There is no problem while triggering workflow. However the workflow get all roles , access profiles and entitlements which users have.

When I select Access Certification and filter specific access profile, then workflow take all identity who have the Access Profile. Normally when I do that form user interface I am able to refine identity but I think it is not supported on workflow.

Is there any way to do that over workflow?

Regards

You could alternatively use the HTTP Request action and Create a search campaign via the api

The request body would look something like this

{
	"name": "Access Certification - Mark Cheek",
	"description": "Certification for specific access profiles assigned to Mark Cheek",
	"type": "SEARCH",
	"searchCampaignInfo": {
		"type": "ACCESS",
		"reviewer": {
			"id": "identityidofthereviewer",
			"type": "IDENTITY"
		},
		"query": "id:idoftheaccessprofileyouwanttocertify",
		"identityIds": [
			"thisistheidoftheidentityyouwanttocertify"
		]
	}
}
1 Like

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