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

Adding access REST Connector no feedback/errors

Robbe_Cronos
Regular Contributor II
Regular Contributor II

Hello,

We are trying to configure our REST Connector in Saviynt to add access to accounts in Gitlab. We have imported all of the accounts and entitlements. user_id, username and access_level are the only required fields as input.

{
    "call": {
        "name": "Group",
        "connection": "acctAuth",
        "showResponse": true,
        "httpMethod": "POST",
        "httpParams": "{\"user_id\": \"${account.accountID}\",\"username\": \"${account.name}\"}",
        "httpHeaders": {
          "Authorization": "${access_token}",
          "Accept": "application/json"
        },
        "httpContentType": "application/json",
        "successResponses": {
          "statusCode": [
            201,
            200
          ]
        },
        "unsuccessResponses": {
          "statusCode": [
            400,
            401,
            404,
            405,
            500
          ]
        }
      }
}
 
When we run the WSRETRYJOB for this security system on tasks created by ARS, we don't get any feedback or errors in the provisioning comments nor in the application logs. We downloaded the last 1000 records but couldn't find anything.
 
Does anyone know what we are missing in our code or how to get some feedback on the provisioning?
6 REPLIES 6

rushikeshvartak
All-Star
All-Star

Can you enable connector log to check detailed log showlogs= true

Does automated provisioning enabled under security system


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

Showlogs: true has already been configured in the configJSON. If you would like to look through the last 1000 records after we executed the WSRETRYJOB, it's in attachment.

Automated provisioning is not enabled under security system.

The connector is also set as provisioning connector btw.

You need to enable automated provisioning then only task will be processed


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

Oh my god, thank you so much.

I thought automated provisioning meant the task would be auto-completed, which we did not want. 

sahajranajee
Saviynt Employee
Saviynt Employee

@Robbe_Cronos That feature would be 'Enable Instant Provisioning' and would need to work in tandem with the task types you select for instant provisioning in Global Configuration.


Regards,
Sahaj Ranajee
Sr. Product Specialist

Robbe_Cronos
Regular Contributor II
Regular Contributor II

Oh okay, thank you very much for the extra information.