Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Sav4sav Rest based connector

sandeepverma
Regular Contributor
Regular Contributor

Hi Expert,

We are using sav4sav rest based connection where we are using ImpotUserJson as per below.  But it's importing all existing "External Contractor" from the users table, but we are looking to extract only newly created users in system. Could you suggest what filter we should use to make it more specific?

ImportUserJson:
 
{
  "connection": "userAuth",
  "url": "https://********.saviyntcloud.com/ECM/api/v5/getUser",
  "httpMethod": "POST",
  "httpHeaders": {
    "Authorization": "${access_token}",
    "contentType": "application/json"
  },
  "httpParams": "{\"userQuery\":\"employeeclass like 'External Contractor' \"}",
  "httpContentType": "application/json",
  "colsToPropsMap": {
    "username": "username~#~char",
       "locationdesc": "locationdesc~#~char",
        "street": "street~#~char",
        "city": "city~#~char",
        "state": "state~#~char",
        "country": "country~#~char"

  },
  "userResponsePath": "userdetails",
  "pagination": {
    "offset": {
      "offsetParam": "offset",
      "batchParam": "max",
      "batchSize": 10000,
      "totalCountPath": "completeResponseMap.total"
    }
  }
}

Who Me Too'd this topic