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

Job is getting successful but accounts are not getting imported

adityachadde
New Contributor III
New Contributor III

Hi Team,

 

We are trying to import the Accounts via REST connection the job is getting completed but accounts are not imported into Saviynt. We are using the below JSON:

 

{
"accountParams": {
"connection": "acctAuth",
"processingType": "SequentialAndIterative",
"successResponses": {
"statusCode": [
200,
201,
202,
203,
204,
205
]
},
"call": {
"call1": {
"callOrder": 0,
"stageNumber": 0,
"http": {
"url": "URL/1.1/accounts/BiyqBqc7/users",
"httpContentType": "application/json",
"httpMethod": "GET",
"httpHeaders": {
"Api-Key": "${connection.testname}",
"Accept": "application/json"
}
},
"listField": "users",
"keyField": "accountID",
"colsToPropsMap": {
"accountID":"id~#~char",
"name":"email~#~char",
"displayName":"full_name~#~char"
},
"disableDeletedAccounts": true
}
},
"acctEntMappings": {}
}
}

We are getting below response in Postman:

adityachadde_0-1729164830050.png

 

We have tried updating the list field as below but it's not working:

"listField": "_embedded",

"colsToPropsMap": { "accountID":"users~dot#id~#~char", "name":"users~dot#email~#~char", "displayName":"users~dot#full_name~#~char" },

But it's not working getting below in the logs:

adityachadde_1-1729164893583.pngadityachadde_2-1729164922319.png

What could be the issue?

Best Regards,

Aditya Chadde

 

2 REPLIES 2

NM
Honored Contributor III
Honored Contributor III

@adityachadde try this 

"listField": "_embedded.users",


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

adityachadde
New Contributor III
New Contributor III

Hi @NM,

Thank you for the quick response it worked.

Best Regards,

Aditya Chadde