3. Authenticate Users
Overview
User authentication is handled by the parent page before it invokes the Account Linking and Account Summary components. You will use the DataConnect API to authenticate users, regardless of user type.
Instructions
Requirements for SSO
- Administrator credentials for DataConnect API
- The user identifier from step 2
Authenticate investor users
- Invoke a DataConnect API
<SESSIONAUTHRQ>request, providing your Administrator credentials and passing thePerson Idas<PERSON_ID>inside<USER_IDENT>, as shown here.
Authenticate advisor users
- Invoke a DataConnect API
<SESSIONAUTHRQ>request, providing your Administrator credentials and passing the<ID>from registration as<PERSON_ID>inside<USER_IDENT>, as shown here.
Notes
- For DataConnect operations in Postman, use “Send and Download” and save the result to a
.zipfile. Inside that.zipfile find the XML response which contains thejsessionIdandcsrfTokenvalues. - When you're done with an authenticated session, expire it using the DataConnect
<SESSIONEXPIRERQ>operation, as shown here. - For more details about how the DataConnect API handles authentication, refer to the "Single Sign-on Operations" section of the DataConnect API Guide.
Success CriteriaUpon success, you will have values for:
jsessionIdcsrfTokenBoth must be passed to the components using the
auth-contextattribute in step 6.
Updated about 2 hours ago
