Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

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

User synchronization is an important aspect in integrating Yellowfin into a third-party application or integrated environment. User synchronization is the process of creating or updating users in Yellowfin to match an external system. Users need to be created in Yellowfin so that user history and preferences are stored and the correct security is applied when consuming content. Yellowfin contains a set of REST services for managing users and synchronizing user updates with external systems.

REST services related to user administration are available here: https://developers.yellowfinbi.com/dev/api-docs/current/#tag/users

There are two main approaches to user synchronization, the difference between the approaches relates to when the user synchronization takes place:

  1. Linked with an existing user synchronization process
    In this approach, a user is created at the same time as  a user is created in the external system. This means the user is created before the user attempts to login to Yellowfin for the first time. Updates to the user in the external system would also be propagated to Yellowfin via services immediately.
  2. On-Demand (or Lazy) synchronization
    The on-demand  approach will only create a user in Yellowfin as they are about to login for the first time. This can be done in conjunction with an SSO login process. A common pattern is to have the SSO code perform the following process when the user first attempts to log in: -
  • Check whether the user attempting to log in to Yellowfin exists
  • If the user does not exist in Yellowfin, create the user
  • If the user does exist in Yellowfin, update the user if any details have changed
  • Check that the user has the correct security access
  • If the user access differs from the external system, then adjust the user's group membership so that it is correct.
  • Perform SSO, and direct the user into Yellowfin.


One issue with on-demand synchronization is that group membership will only be updated when a user logs in. If the user is a recipient of broadcasts via group membership, then they may continue to receive broadcasts after they have been removed from the group in an external system until they login. However an administrator can remove a user from a group manually within Yellowfin.


When using REST services to create and manage users, a user JSON model needs to be provided. This is the format of the User JSON model:

Code Block
{

“userId": “user1",

"emailAddress": "user1@yellowfin.com.au",

"roleCode": "Consumer & Collaborator",

"password": "secr3t",

"firstName": "User",

"lastName": "One",

"languageCode": "EN",

“timeZoneCode": "AUSTRALIA/SYDNEY",

 }

When editing or creating users, populate the model with required attributes. Users can be given a First Name, Last Name, Username and Email address, as well as specifying language and timezone settings.

Users are also assigned a role which determines their access to various functions within the application. Available Roles can be requested via another API call (  https://developers.yellowfinbi.com/dev/api-docs/current/#operation/getRoles ).

Retrieving a User

Fetch the details of an existing user from the application. This can also be used to check whether a user already exists. Retrieve user details by querying GET /api/rpc/users/user-details-by-username/{user-name} ( https://developers.yellowfinbi.com/dev/api-docs/current/#operation/user-details-by-username )

The following examples illustrate how to retrieve an existing user (via username) in various programming languages.