Create UWL Session
Create a New UWL Session
Use the BlockID SDK to create a new UWL session as part of your passwordless login experience. The BlockID mobile application will interact with your UWL session and return the information needed to process and complete the login request.
Parameters
dns
(required): Your BlockID tenant domain as shown in the dashboardcommunityName
(required): Your BlockID tenant community as shown in the dashboardlicenseKey
(required): BlockID license key as shown in the dashboardauthType
: Set tonull
scopes
: Enter a scope to use, such asdevice_info
, or else enternull
metadata
: Used to transmit supplemental information if desired, else enternull
:- The purpose of the uwl session (eg: authentication, hotel-checkin)
- IP of the requesting web page
- DNS of the requesting web page
- Additional information to be presented as required by your authenticator app
Scopes
Setting a scope allows you to specify which response parameters you wish to see, rather than the entire response object. Responses will only be shown for the scopes listed. To see the entire response, set scopes
to null
.
Available scopes:
firstname
lastname
ial
aal
ppt
dl
scep_creds
location
deviceid
device_info
dl_front_image
dl_back_image
ppt_image
liveid
nationalid_front_image
nationalid_back_image
Request Format
- NodeJS SDK
- PHP SDK
- Java SDK
- .NET SDK
- Set tenant info and create a new UWL session
const BIDSessions = require('blockid-nodejs-helpers/BIDSessions');
let createdSessionResponse = await BIDSessions.createNewSession({ "dns": "<dns>", "communityName": "<communityName>", "licenseKey": "<licenseKey>" }, "<authType>", "<scopes>", "<metadata>");
- Set tenant info and create a new UWL session
<?php
require_once("./BIDTenant.php");
require_once("./BIDSession.php");
$tenantInfo = array("dns" => "<dns>", "communityName" => "<communityName>", "licenseKey" => "<licenseKey>");
$authType = null;
$scopes = null;
$createdSessionResponse = BIDSession::createNewSession($tenantInfo, $authType, $scopes);
?>
- Set tenant info and create a new UWL session
BIDTenantInfo tenantInfo = new BIDTenantInfo("<dns>", "<communityName>", "<license>");
BIDSession session = BIDSessions.createNewSession(tenantInfo, null, null);
- Set tenant info and create a new UWL session
using BIDHelpers.BIDTenant.Model;
using BIDHelpers.BIDSessions;
using BIDHelpers.BIDSessions.Model;
BIDTenantInfo bidTenantInfo = new BIDTenantInfo("<dns>", "<communityName>", "<licenseKey>");
BIDSession sessionResponse = BIDSessions.CreateNewSession(bidTenantInfo, "<authType>", "<scopes>");
Example UWL Request
- NodeJS SDK
- PHP SDK
- Java SDK
- .NET SDK
Example - Start UWL Session
const BIDSessions = require('blockid-nodejs-helpers/BIDSessions');
// Optional: Define metadata. Users can pass "null" if defining metadata is not desired
let metadata = { "purpose" : "authentication" };
let createdSessionResponse = await BIDSessions.createNewSession({ "dns": "blockid-trial.1kosmos.net", "communityName": "devx", "licenseKey": "0005c9f8-1918-40be-aa00-e319043f7xxx" }, null, null, metadata);
Example - Start UWL Session
Start a UWL session using the BlockID SDK.
<?php
require_once("./BIDTenant.php");
require_once("./BIDSession.php");
$tenantInfo = array("dns" => "blockid-trial.1kosmos.net", "communityName" => "devx", "licenseKey" => "0005c9f8-1918-40be-aa00-e319043f7xxx");
$authType = null;
$scopes = null;
$createdSessionResponse = BIDSession::createNewSession($tenantInfo, $authType, $scopes);
?>
Example - Start UWL Session
Start a UWL session using the BlockID SDK.
BIDTenantInfo tenantInfo = new BIDTenantInfo("blockid-trial.1kosmos.net", "devx", "0005c9f8-1918-40be-aa00-e319043f7xxx");
BIDSession session = BIDSessions.createNewSession(tenantInfo, null, null);
Example - Start UWL Session
Start a UWL session using the BlockID SDK.
using BIDHelpers.BIDTenant.Model;
using BIDHelpers.BIDSessions;
using BIDHelpers.BIDSessions.Model;
BIDTenantInfo bidTenantInfo = new BIDTenantInfo("blockid-trial.1kosmos.net", "devx", "b65b22ec-181a-4b7f-8116-6eee2a00000");
BIDSession sessionInfo = BIDSessions.CreateNewSession(bidTenantInfo, null, "device_info");
Example Server Response
The SDK will return an immediate response from our API. The responses are the same across each SDK and are JSON formatted. Possible response codes you might receive include:
Server Responses
- 200
- 404
{
message: null,
sessionId: "b0ad6ca2-b148-4e1e-a857-3d7eb9978ce3",
status: true,
url: "https://blockid-trial.1kosmos.net/sessions"
}
A new UWL session was created
When a session is created using the SDK, a unique session ID and URL endpoint are created, and a polling service starts looking for a response. The session will remain valid for 120 seconds. If the polling service does not receive a response within that timeframe, the session will expire and close.
To authenticate the request using the BlockID mobile application you will need to encode the session information in a QR code, such as the one in the image below.

{
message: "Not Found",
sessionId: null,
status: false,
url: null
}
The API could not process the request.