10-15-2022 04:53 AM
Hi,
I am working on calling the Saviynt API using a Rest Connector and wants to update the user's attribute.
I have a Analytics report created and when i call the Saviynt API to fetch the result of the report, it will have the username and other attribute mapping. The postman response look like below, where analytics ID is passed in body of the API:
My ImportUserJSON looks like :
{
"connection": "acctAuth",
"successResponses": {
"statusCode": [
200,
201,
202,
203,
204,
205
]
},
"url": "https://{URL}/ECM/api/v5/fetchControlDetailsES",
"httpMethod": "GETWITHBODY",
"httpParams": "{\"analyticsid\":\"1473\"}",
"httpHeaders": {
"contentType": "application/json",
"Authorization": "${access_token}"
},
"userResponsePath": "result",
"colsToPropsMap": {
"username": "userName~#~char",
"manager": "ownermanagername~#~char"
},
"errorCode":"400",
"errorCodePath":"errorCode"
}
But when i am calling the API from it is giving the below error :
Solved! Go to Solution.
10-16-2022 05:45 AM
As per documentation method is GET
https://documenter.getpostman.com/view/1797923/2s83mbojGM#2ca0c0ea-4d1b-4578-b1f9-6e0f5b6948d4
10-16-2022 10:38 AM
10-17-2022 05:06 AM
Thanks Sivagami. This helps !!!