Hi Team,
I am new to SailPoint ISC.
where do we configure after provisioning rule on AD source source to trigger a PowerShell script on IQ server when AD object is created in ISC?
Hi Team,
I am new to SailPoint ISC.
where do we configure after provisioning rule on AD source source to trigger a PowerShell script on IQ server when AD object is created in ISC?
Welcome to Sailpoint ISC!! you need to use the following APIs:
Create a Rule: First, you need to create a rule using the Rule API. The rule should be of type “ConnectorAfterCreate” for an after provisioning scenario.
create-connector-rule | SailPoint Developer Community
Configure the Source: After creating the rule, you need to update the Active Directory source configuration to include the newly created rule. This is done by adding the rule name to the “nativeRules” attribute under the Attributes map of the source.
The exact API endpoints and methods would be: PATCH /v3/sources/{sourceId} - To update the source configuration with the new rule When creating the rule, ensure that you set the following attributes:
“language” should be set to “beanshell”
“name” should follow the format “SourceName AfterCreate”
“type” should be set to “ConnectorAfterCreate”
The Source of the rule should contain your PowerShell script that will be executed on the IQService server.
Remember to properly configure Transport Layer Security (TLS) along with client authentication to secure the communication channels involving IQService before implementing these scripts.
Hi @Badebaji Below are the details on connector rule by assuming you already have the successful IQServices setup.
On your scenario, basically it is going to be 2 step process.
Thanks, team, for the updates
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.