Help Needed – Web Service SaaS Connector Setup & Required Endpoints

Hi Team,

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:

  1. What API endpoints are required from the client web application (e.g., authentication, Test Connection , aggregation)?
  2. How to properly configure the connector (authentication method, headers, and request format)?
  3. 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).

Define the Test connection HTTP operation.
-Give context URL.
-HTTP method
-If your login api requires the Header/Body then add it

-Root path (response path of login api ).
-Status Code (as -“20*” ).


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.

can you describe what is the use of http one

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?

@hkhandale if you use any extra headers in postman then you have to provide it under “Headers” in key and value format .

Need Some information for schema Attribute and attribute path mapping
how to fetch attribute path in postman
please provide ss for reference

Below is the SS for the schema attribute and attribute path .


In my case [{

    "userId": ,
    "firstName": "",
    "lastName": "",
    "username": "",
    "password": "",
    "emailId": "",
    "contactNumber": "",
    "companyName": "",
    "status": 1,
    "createdByUserId": 0,
    "roleId": ,
    "roleName": ""
},

{},{}]
This is response format of get/users api .
image
this is Root path for above JSON response.

1 Like