Delay in triggering the create account after provisioning completed in request center

Hi team,
I have working on Web Services Connector and our requirement is that after create account provisioned got completed it should take 1-2 minute to trigger create account and account should be created after 2 minutes after provisioning completed.

It is possible we can customized this.

Hi @Faizan9097 ,
When a request is made in request centre then it will trigger a provisioning request ,until the request is completed it will be in pending state and once the provisioning (create account ) is completed it will show complete in the request centre.To achieve this you can use a workflow. Create a dummy role with no entitlement in it and request it when you want to provision it in the request centre.Create a workflow and use “Provisioning Completed” trigger in it and filter out the particular role.So when you request a role in request centre it will be completed once it is submitted.In the workflow use wait node to wait the workflow for 2 minutes and then create a http operation or manager access to create a account in webservice.Therefore by using this way you can delay the create account provisioning.
Thanks,
Naveen

Hi @Faizan9097 ,

Could you please give a bit more context on you problem, do you wish for the provisioning in target wait for 2-3 minutes even if the accessRequest is completed?

I want delay in provisioning in IdentityNow.

@Faizan9097

We added a delay during provisioning using below code for a web service connector as part of before operation rule:

int maxDelayInSeconds = 20;
int numberOfSecondsToSleep = (int)(maxDelayInSeconds * (java.lang.Math.random()));
TimeUnit.SECONDS.sleep(numberOfSecondsToSleep);

Do check out this post:

Thanks

2 Likes