Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Key or Map

Description

key:username=Username

The keyword “key” refers to using username as a unique identifier. This allows OnLink to update the record. Any other unique field (e.g. user id, email address) can be used as the key.

map:email=User

Maps email to User which can be an attribute of type User i.e., Atlassian User object

config:filter=accountExpired:0

Set search filter to limit users returned. This is a required field when getting users.

config:data_source

OnLink calls the “users” API by default. However this data_source config parameter allows you to change the API to any other Okta API. Here’s an example to get organizations info:

key:organizationname=OrgName
map:customproperty17=Custom
map:parentorganization=Parent
config:data_source=getOrganization
config:section=organizations

Here’s an example for user roles:

key:rolekey=Username
map:roledisplayname=RoleDisplay
map:rolename=RoleName
config:data_source=getRoleDetailsforUsers
config:section=roleDetails

Other Saviynt API’s can be mapped in a similar way.

...