Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

User Form End date should be populated after getting provisioned

rambhan
New Contributor II
New Contributor II

We have created a user form, and we have a field user type of OKTA. Once a user is created on the Saviynt UI, as part of the birthright assignment, an account creation and an add-access task will be generated for the user. After we run the provision job, an account will be created. 

Problem Statement:

While creating the user, we provide the end date as well, as that is part of the mandatory fields in the form. The end date provided in the user form should be reflected on the account end date, will that be a possible scenario? Do we have to update the account creation JSON on the provisioning rest-based connector?

5 REPLIES 5

rushikeshvartak
All-Star
All-Star

During account creation you can pass end date 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

We specified these values in OktaProvisioning_Template(rest) connector in Create account JSON:

"httpParams": "{\"profile\": {\"firstName\": \"${user.firstname}\", \"lastName\": \"${user.lastname}\", \"email\": \"${user.email}\", \"login\": \"${user.email}\" }}"

In the same way, can can update the create account JSON for hiredate and expirationdate like 

"httpParams": "{\"profile\": {\"firstName\": \"${user.firstname}\", \"lastName\": \"${user.lastname}\", \"email\": \"${user.email}\", \"login\": \"${user.email}\" , \"hiredate\": \"${user.start}\", \"expirationdate\": \"${user.enddate}\" }}"

During account creation you can pass end date - I'm unable to understand this point, the usecase is we create an account using technical rules which is created automatically and account attributes will be specified in connection.

 

You can pass information such as startdate or end date if its exists on users object 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Can you provide any documentation on passing enddate to account attributes from user attributes

If there is no such documentation available can you let me the steps to pass on attributes while creating account using technical rules

${user.startdate}

https://docs.saviyntcloud.com/bundle/SAP-v2021x/page/Content/Configuring-the-Integration-for-Provisi...


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.