Get CIF Web Credentials
How to authenticate borrower login
What are CIF Web Tokens?
This is a type of token which will authenticate a contact/borrower in NLS. Extremely useful for customer facing portal authentication.
Each contact record (cifno or contact_id) in NLS will be able to store web credentials (username/password).
Since a Web Token is used to authenticate a single contact, the token will only have access to records that are directly tied to that contact.
Postman Example
Step 1
You will need to create a new POST method and set the URL to {base_URL}/core/connect/token
.
Step 2
Go to the body tab and set type to x-www-urlencoded
. Add the following keys and it's corresponding values.
Make sure to set acr_values to tenant:web.
Step 3
Click on SEND to fetch the web token. If successful you will get a JSON response and the token is returned in access_token.
Updated almost 3 years ago