The following guide is intended to quickly understand the scope needed to integrate with Kount Control digital account protection APIs and to provide a high-level overview of integration points and flow. During integration, Kount provides support for the client’s development staff including direct access to Kount’s Solution Engineers. This direct communication is to facilitate quick, accurate responses to integration questions your development team might have. For detailed technical specifications, SDK, and API documentation can be found at the URLs below.
Technical Documentation
Device Data Collector
Endpoints
Environments
Kount has two environments for a Control integration depending on the stage of the implementation:
- Sandbox: Full integration with test data
- Production: Full integration with Production data
A valid Client Identification (clientID) and JWT credentials are required to make a call to any of the API endpoints (JWT credentials are not required for data collection). These credentials are provided as part of technical integration.
Sandbox Environment
The Sandbox Environment is a scaled down replica of the Production Environment and is intended for integration and user testing/setup. The Sandbox Environment represents all of the functionality of the current Production Environment with the exception of scale. Within the Sandbox environment there is a user interface which the Client’s fraud personnel may login, set Profiles and Policies, research login event history, and run reports.
Production Environment
The Production Environment is built to handle full-scale production traffic.
Parameterizing
It is recommended to parameterize the variables below to facilitate testing and to ease the move from one environment to another.
jwt
This token is supplied by Kount and is different from Sandbox to Production. As a parameter, this must facilitate testing.
apiHost
The API host contains the location for the environment the post is being made to:
- Predictive Response Harness and Sandbox: environmentDomain = “api-sandbox”
- Production: environmentDomain = “api”
version
While every attempt will be made to not create breaking changes to the API endpoints, it is recognized that there may be times when to add new functionality breaking changes may occur. In those events, the version of API endpoint will increment.
dataCollectionHost
It is important to use the proper data collection host to ensure that sessions are properly aligned between data collection and login requests.
- Sandbox: dataCollectionHost = “https://tst.kaptcha.com”
- Production: dataCollectionHost = “https://ssl.kaptcha.com”
Data Collection
Kount uses a light-weight data collection to gather information about a device. Data collection is made prior to making a Post to the Login API. The data collection uses the same session identifier as the subsequent login event to tie information together, so special care must be made within sessions to ensure that the data collection and the login event share the same session identification.
For Kount’s browser Data Collector: Browser.
For Android and iOS SDKs respectively: Mobile.
Browser Recommendations
Proper placement and configuration of the browser Data Collector is crucial in gathering information to identify devices, adhere to business policy, and accurately define login risk. Incorrect placement or misconfiguration can cause limited or no data collection.
Page and Page Location
Suggested placement of the data collection code is in the body of the login page. Kount moderates collection from the same session ID when a collection comes within 15 minutes. However, it is strongly recommended that care is taken to run a single data collection per session. When multiple collections are run for a single session (if the collection is placed in the header, for example), it is possible the collection events will be mistaken as a DDOS attacked and all collections from your site will be throttled.
Chrome’s Lazy Load
Chrome’s soon to be released feature Lazy Load defers loading images and iframes that come below the fold of the page. This feature is active when Chrome’s Data Saver feature is on and when the loading attribute is set to lazy or auto or unset. More information can be found here.
For Clients using Kount’s legacy data collector that utilizes an iframe, it is recommended to update integration or set the loading attribute to eager, which bypasses lazy loading functionality.
Content Security Policy
Kount utilizes both third party and first party cookies as well as device data to identify devices. In order to take full advantage of the device collector features, Clients need to make modifications to the Content Security Policy on their site.
For more information on Content Security Policy and settings for the Data Collector, please contact your Kount Solutions Engineer.
Device Info Endpoint
The Device Info endpoint provides basic information related to the device including the device browser settings, geolocation, device language, network data, and the device ID.
Info Endpoint
Login Event Workflow
The basic workflow of Kount Control starts with collecting data from the device. When the user logs in with valid credentials, the Client makes a post to Kount’s Login API to get a response of Accept, Block, or Challenge.
Depending on the response based on your policies from Kount, the Client can either allow access, deny access, or challenge their user using their existing step-up authentication.
Step 1
The Kount Control workflow begins with a Data Collection from the browser application or from the mobile SDK. Kount’s browser data collector is a light-weight JavaScript SDK downloaded at runtime. Our mobile SDK can be integrated into your mobile application. Only one data collection must be made per session.
Step 2
After user’s login credentials have been posted to your authentication service, there are two paths:
-
Valid Credentials: If the user presented valid credentials, the Client posts to Kount’s Login Decision API prior to granting access. The response to this API call is Allow, Block, or Challenge.
-
Invalid Credentials: If the user fails authentication, the Client declines access to the user and Post to the failed-attempt API. This API increases velocities and informs Kount’s ML and AI models for future login attempts.
Step 3
If the Login decision results in a Challenge it is imperative to send the outcome of the login challenge to Kount to better update our AI models and to update information for use within the portal.
Login Endpoint
The API for the Login Event can be found here.
Events Endpoint
The API for the Failed Attempt and Login Challenge Outcome can be found here.
Trusted Device Workflow
Trusted Device service can store a trust relationship between a device and a specific user.
Users typically employ a small handful of devices to login (a cell phone, a work laptop, and a home computer). By identifying these devices for specific users, the Client reduces friction at login using policies to only challenge users with a device not already known and trusted.
Example: A policy is created to challenge a login coming from a user with a device not previously trusted for that user. Sandra logs in using her new cell phone. Because this cell phone is not trusted for her, the response from Kount’s login event API is Challenge.
The Client asks Sandra to perform a step-up authentication step (asking for her to input a code sent to her through text). She succeeds and is able to log in to her account. When Sandra succeeds on the step-up challenge, the Client also sends an update to Kount to trust this device for Sandra. Kount stores this trust relationship so the next time Sandra logs in with this device, she would not be asked for step-up authentication.
There are several purpose-built endpoints available with the Trusted Device Service.
- Create Trusted Device Record: Used after a user has met a step-up challenge and the Client would like to store the trust state of the device for that user.
- Update Trusted Device Record: Used to alter the trust state between a device and a user. Options include trusted or banned. Typically, this is to ensure that a specific user cannot login using a specific device.
- Read Trust States: Options to review information for all users connected to a device, all devices connected to a user, or the trust state for a specific user/device pair. This is used to identify a user before the user has logged into the site. This can also be used to allow typically used to display a list of devices with trust within a Client’s, empowering users.
- Delete Trusted Device Record: Used to delete the record of a relationship between a user’s ID and a device. Typically used when there is a limit to the number of devices that may be used for a specific account, and the user wants to replace one device for a new one.
Trust State Endpoint
Comments
0 comments
Article is closed for comments.