Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

What and How many attribute value types supported for account import?

alc
Regular Contributor
Regular Contributor

Hello

I configured a connection with REST Connector. when configuring ImportAccEntJSON, for "colsToPropsMap" settings such as 

"name": "username~#~char",

From Developers Handbook, I can only find mapping attribute types such as ~#~char and ~#~date

What about other types such as boolean, int, double, array or list etc. What attribute type need to be set for them?

Could you please provide me a list of supported types?

Thanks,

6 REPLIES 6

rushikeshvartak
All-Star
All-Star
  • REST only supports char & date 
  • What about other types such as boolean, int, double, array or list etc. What attribute type need to be set for them? --> You need to use char


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

alc
Regular Contributor
Regular Contributor

Thanks Rushikes for your confirmation.

If I use char for boolean, it means String or single char? For example, if the boolean value is true, then the imported value will be "true" or will be "1"? 

What about True, TRUE etc? the imported value will be same as "true" or it is case sensitive?

Thanks

  • Based on how its visible in API it will show same in Saviynt
    • 1 =1 
    • true = true
    • false =false

Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Amit_Malik
Valued Contributor II
Valued Contributor II

Hi @alc ,

It will be String version of the data coming from Source / app. Values are case Sensitive while importing and storing it in database , seeing it in UI. Once stored in db , querying data is case-insensitive.

For status field , app can have true / false / 1 /o/ TRUE etc... and Saviynt would expect 1,2 etc.., for that you can use below and mention the values coming from source to allign it with Saviynt

"statusAndThresholdConfig": {
"statusColumn": "customproperty11",
"activeStatus": [
"true"
]

Thanks,

Amit

If this answers your query, Please ACCEPT SOLUTION and give KUDOS.

Kind Regards,
Amit Malik
If this helped you move forward, please click on the "Kudos" button.
If this answers your query, please select "Accept As Solution".

alc
Regular Contributor
Regular Contributor

Thanks, what about array list from response JSON such as:

"attributeAttay": [1, 2, 3] or

"attributeAttay": ["1", "2", "3"] 

Are they same and convert to "1,2,3" or convert to "1","2","3" ?

Thanks

 

It will be stored as String "1","2","3"


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.