I am using the Web Service SaaS Connector for the first time in SailPoint IdentityNow. I have gone through the documentation, but I am still facing issues while performing the Test Connection.
Could you please guide me on:
What API endpoints are required from the client web application (e.g., authentication, Test Connection , aggregation)?
How to properly configure the connector (authentication method, headers, and request format)?
If anyone has already set this up, could you share a correct configuration screenshot for reference?
Your insights and examples would be really helpful.
Thanks in advance!
Hi @hkhandale , For test connection you can use login api (get it from client) .
API should return JSON or XML format in reponse.
-Define base url .
-Use Basic authentication (Username and Password).
In my case response in JSON
{
“roles”: [
{
“authority”: “Admin”
}
],
“message”: “Login successful”,
“username”: “abc”
}
Use below link to get your root path mapping.
You can check with these configurations for the Test Connection.
Thanks @pavya , Could you please provide similar details for aggregation and provisioning HTTP Operation.
and I want to know in Header which value we need to pass in Authorization
In Docs they mentioned as an example $application.accesstoken$, but i want to know do we need to add variable that define in postman or value of access token which is available in environment tab of postman?