Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/24/2024 06:24 AM
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,
08/24/2024 08:45 AM
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
08/24/2024 09:50 AM
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
08/24/2024 10:02 AM
08/24/2024 12:17 PM
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.
08/24/2024 01:14 PM
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
08/24/2024 02:21 PM
It will be stored as String "1","2","3"