Login
Enquiring about name, ID number, and birthdate to check if they are among sanction lists & adding new customized blacklist as per need
Enquire by name, NID, and birthdate
POST https://api.vlenseg.com/api/DigitalIdentity/Login
Headers
Name
Type
Description
ApiKey*
string
API Key is the main authentication method for the request
Request Body
Name
Type
Description
json object
User Current Location {latitude, longitude}
string
User mobile device id
string
The User registered phone number to be used as username
string
User Password
GUID
The one-time code SMS request id needed if the user trying to login form a new device.
string
OTP value that sent via SMS.
{
"data": {
"hasPendingRequest": <bool>,
"isPhoneNumberConfirmationRequired": <bool>,
"isPhoneNumberConfirmed": <bool>,
"phoneNumberOtp": <string>,
"phoneNumberOtpRequestId": <GUID>,
"emailOtpRequestId": <GUID>,
"isDigitalIdentityVerified": <bool>,
"accessToken": <string>,
"encryptedAccessToken": <string>,
"phoneOtpExpireInSeconds": <int>,
"user": {
"name": <string>,
"surname": <string>,
"fullName": <string>,
"userName": <string>,
"emailAddress": <string>,
"phoneNumber": <string>,
"idNumber": <string>
},
"redirectUri": <string>
},
"error_code": <int>,
"error_message": <string>
}Last updated