Click HERE to see how Saviynt Intelligence is transforming the industry. |
10/23/2023 12:45 AM
Hi Team,
We are integration new REST based application with Saviynt. New account Creation API is generation common 201 response code for both successful and failure cases with different message in response body.
For success case: Response code 201 with message "ProcessExecuteStatusCode: CompletedSuccessfully" in response body.
For Failure case: Responsode 201 with message "ProcessexecuteStatisCode: CompletedWithMessages" in response body.
How can we implement this new account use case with same 201 response code in Saviynt.?
Is there ant way to implement this new account JSON with these API response message as condition instead of 201 code.?
10/24/2023 11:42 PM
Hello @Rajesh_IAM,
You can add below snippet in the json to handle such scenario anything apart from "CompletedSuccessfully" will go to failure.
"successResponses": {
"ProcessExecuteStatusCode": [
"CompletedSuccessfully"
]
}