HTML5 Library
Disclaimer: This library is meant to help you with a quick implementation of the LoginRadius platform and also to serve as a reference point for the LoginRadius API. Keep in mind that it is an open source library, which means you are free to download and customize the library functions based on your specific application needs.
This document contains information and examples regarding the LoginRadius HTML5 SDK. It provides guidance for working with social authentication, user profile data, and login with a variety of social networks such as Facebook, Google, Twitter etc. You can get the SDK from here
Setup Your Dashboard
Get your API credentials to initialize SDK and whitelist your application domain as explained in this section.
Installation
In order to utilize the HTML5/JS SDK, you will need to initialize the SDK with your API Key:
var sdkoptions = {
"apiKey": "{{YOUR API KEY}}"
}
LoginRadiusSDK.initSDK(sdkoptions);
Configuration
- Download the SDK from Github.
- Include the SDK javascript file on your website.
<script src="LoginRadiusV2SDK.10.0.0.js" type="text/javascript"></script>
API Details
Authentication API
List of APIs in this Section:
- PUT : Auth Update Profile by Token
- PUT : Auth Verify Email By OTP
- PUT : Auth Reset Password by Reset Token
- PUT : Auth Change Password
- PUT : Auth Resend Email Verification
- POST : Auth Add Email
- POST : Auth Login by Email
- POST : Auth Forgot Password
- POST : Auth User Registration by Email
- POST : Auth User Registration By Captcha
- GET : Auth Validate Access token
- GET : Access Token Invalidate
- GET : Access Token Info
- GET : Auth Read all Profiles by Token
- GET : Auth Send Welcome Email
- GET : Auth Delete Account
- GET : Auth Check Email Availability
- GET : Auth Verify Email
- GET : Auth Social Identity
- GET : Auth Privacy Policy Accept
- DELETE : Auth Delete Account with Email Confirmation
- DELETE : Auth Remove Email
Auth Update Profile by Token (PUT)
This API is used to update the user's profile by passing the access token.
var accessToken = "<accessToken>"; //Required
var userProfileUpdateModel ={
"firstName" : "<firstName>",
"lastName" : "<lastName>"
}; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var fields = null; //Optional
var nullSupport = true; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.authenticationApi.updateProfileByAccessToken(accessToken, userProfileUpdateModel, emailTemplate, fields, nullSupport, smsTemplate, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Verify Email By OTP (PUT)
This API is used to verify the email of user when the OTP Email verification flow is enabled, please note that you must contact LoginRadius to have this feature enabled.
var emailVerificationByOtpModel ={
"email" : "<email>",
"otp" : "<otp>"
}; //Required
var fields = null; //Optional
var url = "<url>"; //Optional
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.verifyEmailByOTP(emailVerificationByOtpModel, fields, url, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Reset Password by Reset Token (PUT)
This API is used to set a new password for the specified account.
var resetPasswordByResetTokenModel ={
"password" : "<password>",
"resetToken" : "<resetToken>"
}; //Required
LoginRadiusSDK.authenticationApi.resetPasswordByResetToken(resetPasswordByResetTokenModel, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Change Password (PUT)
This API is used to change the accounts password based on the previous password
var accessToken = "<accessToken>"; //Required
var newPassword = "<newPassword>"; //Required
var oldPassword = "<oldPassword>"; //Required
LoginRadiusSDK.authenticationApi.changePassword(accessToken, newPassword, oldPassword, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Resend Email Verification (PUT)
This API resends the verification email to the user.
var email = "<email>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.authenticationApi.authResendEmailVerification(email, emailTemplate, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Add Email (POST)
This API is used to add additional emails to a user's account.
var accessToken = "<accessToken>"; //Required
var email = "<email>"; //Required
var type = "<type>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.authenticationApi.addEmail(accessToken, email, type, emailTemplate, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Login by Email (POST)
This API retrieves a copy of the user data based on the Email
var emailAuthenticationModel ={
"email" : "<email>",
"password" : "<password>"
}; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var fields = null; //Optional
var loginUrl = "<loginUrl>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.authenticationApi.loginByEmail(emailAuthenticationModel, emailTemplate, fields, loginUrl, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Forgot Password (POST)
This API is used to send the reset password url to a specified account. Note: If you have the UserName workflow enabled, you may replace the 'email' parameter with 'username'
var email = "<email>"; //Required
var resetPasswordUrl = "<resetPasswordUrl>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.forgotPassword(email, resetPasswordUrl, emailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth User Registration by Email (POST)
This API creates a user in the database as well as sends a verification email to the user.
var authUserRegistrationModel ={
"email" : [ {
"type" : "<type>" ,
"value" : "<value>"
} ] ,
"firstName" : "<firstName>",
"lastName" : "<lastName>",
"password" : "<password>"
}; //Required
var sott = "<sott>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var fields = null; //Optional
var options = "<options>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.userRegistrationByEmail(authUserRegistrationModel, sott, emailTemplate, fields, options, verificationUrl, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth User Registration By Captcha (POST)
This API creates a user in the database as well as sends a verification email to the user.
var authUserRegistrationModelWithCaptcha ={
"email" : [ {
"type" : "<type>" ,
"value" : "<value>"
} ] ,
"firstName" : "<firstName>",
"g-recaptcha-response" : "<g-recaptcha-response>",
"lastName" : "<lastName>",
"password" : "<password>"
}; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var fields = null; //Optional
var options = "<options>"; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.userRegistrationByCaptcha(authUserRegistrationModelWithCaptcha, emailTemplate, fields, options, smsTemplate, verificationUrl, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Validate Access token (GET)
This api validates access token, if valid then returns a response with its expiry otherwise error.
var accessToken = "<accessToken>"; //Required
LoginRadiusSDK.authenticationApi.authValidateAccessToken(accessToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token Invalidate (GET)
This api call invalidates the active access token or expires an access token's validity.
var accessToken = "<accessToken>"; //Required
var preventRefresh = true; //Optional
LoginRadiusSDK.authenticationApi.authInValidateAccessToken(accessToken, preventRefresh, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token Info (GET)
This api call provide the active access token Information
var accessToken = "<accessToken>"; //Required
LoginRadiusSDK.authenticationApi.getAccessTokenInfo(accessToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Read all Profiles by Token (GET)
This API retrieves a copy of the user data based on the access token.
var accessToken = "<accessToken>"; //Required
var fields = null; //Optional
LoginRadiusSDK.authenticationApi.getProfileByAccessToken(accessToken, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Send Welcome Email (GET)
This API sends a welcome email
var accessToken = "<accessToken>"; //Required
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.sendWelcomeEmail(accessToken, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Delete Account (GET)
This API is used to delete an account by passing it a delete token.
var deletetoken = "<deletetoken>"; //Required
LoginRadiusSDK.authenticationApi.deleteAccountByDeleteToken(deletetoken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Check Email Availability (GET)
This API is used to check the email exists or not on your site.
var email = "<email>"; //Required
LoginRadiusSDK.authenticationApi.checkEmailAvailability(email, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Verify Email (GET)
This API is used to verify the email of user. Note: This API will only return the full profile if you have 'Enable auto login after email verification' set in your LoginRadius Admin Console's Email Workflow settings under 'Verification Email'.
var verificationToken = "<verificationToken>"; //Required
var fields = null; //Optional
var url = "<url>"; //Optional
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.verifyEmail(verificationToken, fields, url, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Social Identity (GET)
This API is called just after account linking API and it prevents the raas profile of the second account from getting created.
var accessToken = "<accessToken>"; //Required
var fields = null; //Optional
LoginRadiusSDK.authenticationApi.getSocialIdentity(accessToken, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Privacy Policy Accept (GET)
This API is used to update the privacy policy stored in the user's profile by providing the access token of the user accepting the privacy policy
var accessToken = "<accessToken>"; //Required
var fields = null; //Optional
LoginRadiusSDK.authenticationApi.acceptPrivacyPolicy(accessToken, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Delete Account with Email Confirmation (DELETE)
This API will send a confirmation email for account deletion to the customer's email when passed the customer's access token
var accessToken = "<accessToken>"; //Required
var deleteUrl = "<deleteUrl>"; //Optional
var emailTemplate = "<emailTemplate>"; //Optional
LoginRadiusSDK.authenticationApi.deleteAccountWithEmailConfirmation(accessToken, deleteUrl, emailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Auth Remove Email (DELETE)
This API is used to remove additional emails from a user's account.
var accessToken = "<accessToken>"; //Required
var email = "<email>"; //Required
LoginRadiusSDK.authenticationApi.removeEmail(accessToken, email, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account API
List of APIs in this Section:
- PUT : Account Update
- PUT : Update Phone ID by UID
- PUT : Account Set Password
- PUT : Account Invalidate Verification Email
- PUT : Reset phone ID verification
- PUT : Upsert Email
- PUT : Update UID
- POST : Account Create
- POST : Forgot Password token
- POST : Email Verification token
- GET : Account Profiles by Email
- GET : Account Profile by Phone ID
- GET : Account Profiles by UID
- GET : Account Password
- GET : Access Token based on UID or User impersonation API
- GET : Account Identities by Email
- DELETE : Account Delete
- DELETE : Account Remove Email
- DELETE : Delete User Profiles By Email
Account Update (PUT)
This API is used to update the information of existing accounts in your Cloud Storage. See our Advanced API Usage section Here for more capabilities.
var accountUserProfileUpdateModel ={
"firstName" : "<firstName>",
"lastName" : "<lastName>"
}; //Required
var uid = "<uid>"; //Required
var fields = null; //Optional
var nullSupport = true; //Optional
LoginRadiusSDK.accountApi.updateAccountByUid(accountUserProfileUpdateModel, uid, fields, nullSupport, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Update Phone ID by UID (PUT)
This API is used to update the PhoneId by using the Uid's. Admin can update the PhoneId's for both the verified and unverified profiles. It will directly replace the PhoneId and bypass the OTP verification process.
var phone = "<phone>"; //Required
var uid = "<uid>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.updatePhoneIDByUid(phone, uid, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Set Password (PUT)
This API is used to set the password of an account in Cloud Storage.
var password = "<password>"; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.accountApi.setAccountPasswordByUid(password, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Invalidate Verification Email (PUT)
This API is used to invalidate the Email Verification status on an account.
var uid = "<uid>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.accountApi.invalidateAccountEmailVerification(uid, emailTemplate, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Reset phone ID verification (PUT)
This API Allows you to reset the phone no verification of an end user’s account.
var uid = "<uid>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.accountApi.resetPhoneIDVerificationByUid(uid, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Upsert Email (PUT)
This API is used to add/upsert another emails in account profile by different-different email types. If the email type is same then it will simply update the existing email, otherwise it will add a new email in Email array.
var upsertEmailModel ={
"email" : [ {
"type" : "<type>" ,
"value" : "<value>"
} ]
}; //Required
var uid = "<uid>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.upsertEmail(upsertEmailModel, uid, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Update UID (PUT)
This API is used to update a user's Uid. It will update all profiles, custom objects and consent management logs associated with the Uid.
var updateUidModel ={
"newUid" : "<newUid>"
}; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.accountApi.accountUpdateUid(updateUidModel, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Create (POST)
This API is used to create an account in Cloud Storage. This API bypass the normal email verification process and manually creates the user.
In order to use this API, you need to format a JSON request body with all of the mandatory fields
var accountCreateModel ={
"email" : [ {
"type" : "<type>" ,
"value" : "<value>"
} ] ,
"firstName" : "<firstName>",
"lastName" : "<lastName>",
"password" : "<password>"
}; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.createAccount(accountCreateModel, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Forgot Password token (POST)
This API Returns a Forgot Password Token it can also be used to send a Forgot Password email to the customer. Note: If you have the UserName workflow enabled, you may replace the 'email' parameter with 'username' in the body.
var email = "<email>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var resetPasswordUrl = "<resetPasswordUrl>"; //Optional
var sendEmail = true; //Optional
LoginRadiusSDK.accountApi.getForgotPasswordToken(email, emailTemplate, resetPasswordUrl, sendEmail, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Email Verification token (POST)
This API Returns an Email Verification token.
var email = "<email>"; //Required
LoginRadiusSDK.accountApi.getEmailVerificationToken(email, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Profiles by Email (GET)
This API is used to retrieve all of the profile data, associated with the specified account by email in Cloud Storage.
var email = "<email>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.getAccountProfileByEmail(email, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Profile by Phone ID (GET)
This API is used to retrieve all of the profile data, associated with the account by phone number in Cloud Storage.
var phone = "<phone>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.getAccountProfileByPhone(phone, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Profiles by UID (GET)
This API is used to retrieve all of the profile data, associated with the account by uid in Cloud Storage.
var uid = "<uid>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.getAccountProfileByUid(uid, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Password (GET)
This API use to retrive the hashed password of a specified account in Cloud Storage.
var uid = "<uid>"; //Required
LoginRadiusSDK.accountApi.getAccountPasswordHashByUid(uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token based on UID or User impersonation API (GET)
The API is used to get LoginRadius access token based on UID.
var uid = "<uid>"; //Required
LoginRadiusSDK.accountApi.getAccessTokenByUid(uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Identities by Email (GET)
Note: This is intended for specific workflows where an email may be associated to multiple UIDs. This API is used to retrieve all of the identities (UID and Profiles), associated with a specified email in Cloud Storage.
var email = "<email>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.getAccountIdentitiesByEmail(email, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Delete (DELETE)
This API deletes the Users account and allows them to re-register for a new account.
var uid = "<uid>"; //Required
LoginRadiusSDK.accountApi.deleteAccountByUid(uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Remove Email (DELETE)
Use this API to Remove emails from a user Account
var email = "<email>"; //Required
var uid = "<uid>"; //Required
var fields = null; //Optional
LoginRadiusSDK.accountApi.removeEmail(email, uid, fields, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Delete User Profiles By Email (DELETE)
This API is used to delete all user profiles associated with an Email.
var email = "<email>"; //Required
LoginRadiusSDK.accountApi.accountDeleteByEmail(email, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
PhoneAuthentication API
List of APIs in this Section:
- PUT : Phone Reset Password by OTP
- PUT : Phone Verification OTP
- PUT : Phone Verification OTP by Token
- PUT : Phone Number Update
- POST : Phone Login
- POST : Phone Forgot Password by OTP
- POST : Phone Resend Verification OTP
- POST : Phone Resend Verification OTP By Token
- POST : Phone User Registration by SMS
- GET : Phone Number Availability
- DELETE : Remove Phone ID by Access Token
Phone Reset Password by OTP (PUT)
This API is used to reset the password
var resetPasswordByOTPModel ={
"otp" : "<otp>",
"password" : "<password>",
"phone" : "<phone>"
}; //Required
LoginRadiusSDK.phoneAuthenticationApi.resetPasswordByPhoneOTP(resetPasswordByOTPModel, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Verification OTP (PUT)
This API is used to validate the verification code sent to verify a user's phone number
var otp = "<otp>"; //Required
var phone = "<phone>"; //Required
var fields = null; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.phoneVerificationByOTP(otp, phone, fields, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Verification OTP by Token (PUT)
This API is used to consume the verification code sent to verify a user's phone number. Use this call for front-end purposes in cases where the user is already logged in by passing the user's access token.
var accessToken = "<accessToken>"; //Required
var otp = "<otp>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.phoneVerificationOTPByAccessToken(accessToken, otp, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Number Update (PUT)
This API is used to update the login Phone Number of users
var accessToken = "<accessToken>"; //Required
var phone = "<phone>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.updatePhoneNumber(accessToken, phone, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Login (POST)
This API retrieves a copy of the user data based on the Phone
var phoneAuthenticationModel ={
"password" : "<password>",
"phone" : "<phone>"
}; //Required
var fields = null; //Optional
var loginUrl = "<loginUrl>"; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.loginByPhone(phoneAuthenticationModel, fields, loginUrl, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Forgot Password by OTP (POST)
This API is used to send the OTP to reset the account password.
var phone = "<phone>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.forgotPasswordByPhoneOTP(phone, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Resend Verification OTP (POST)
This API is used to resend a verification OTP to verify a user's Phone Number. The user will receive a verification code that they will need to input
var phone = "<phone>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.phoneResendVerificationOTP(phone, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Resend Verification OTP By Token (POST)
This API is used to resend a verification OTP to verify a user's Phone Number in cases in which an active token already exists
var accessToken = "<accessToken>"; //Required
var phone = "<phone>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.phoneResendVerificationOTPByToken(accessToken, phone, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone User Registration by SMS (POST)
This API registers the new users into your Cloud Storage and triggers the phone verification process.
var authUserRegistrationModel ={
"firstName" : "<firstName>",
"lastName" : "<lastName>",
"password" : "<password>",
"phoneId" : "<phoneId>"
}; //Required
var sott = "<sott>"; //Required
var fields = null; //Optional
var options = "<options>"; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.phoneAuthenticationApi.userRegistrationByPhone(authUserRegistrationModel, sott, fields, options, smsTemplate, verificationUrl, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Phone Number Availability (GET)
This API is used to check the Phone Number exists or not on your site.
var phone = "<phone>"; //Required
LoginRadiusSDK.phoneAuthenticationApi.checkPhoneNumberAvailability(phone, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Remove Phone ID by Access Token (DELETE)
This API is used to delete the Phone ID on a user's account via the access token
var accessToken = "<accessToken>"; //Required
LoginRadiusSDK.phoneAuthenticationApi.removePhoneIDByAccessToken(accessToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MultiFactorAuthentication API
List of APIs in this Section:
- PUT : Update MFA by Access Token
- PUT : MFA Update Phone Number by Token
- PUT : MFA Validate Google Auth Code
- PUT : MFA Update Phone Number
- POST : MFA Email Login
- POST : MFA Phone Login
- GET : MFA Validate Access Token
- GET : MFA Resend Otp
- DELETE : MFA Reset Google Authenticator by Token
- DELETE : MFA Reset SMS Authenticator by Token
- DELETE : MFA Reset SMS Authenticator By UID
- DELETE : MFA Reset Google Authenticator By UID
Update MFA by Access Token (PUT)
This API is used to Enable Multi-factor authentication by access token on user login
var accessToken = "<accessToken>"; //Required
var multiFactorAuthModelByGoogleAuthenticatorCode ={
"googleAuthenticatorCode" : "<googleAuthenticatorCode>"
}; //Required
var fields = null; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaUpdateByAccessToken(accessToken, multiFactorAuthModelByGoogleAuthenticatorCode, fields, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Update Phone Number by Token (PUT)
This API is used to update the Multi-factor authentication phone number by sending the verification OTP to the provided phone number
var accessToken = "<accessToken>"; //Required
var phoneNo2FA = "<phoneNo2FA>"; //Required
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaUpdatePhoneNumberByToken(accessToken, phoneNo2FA, smsTemplate2FA, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Validate Google Auth Code (PUT)
This API is used to login via Multi-factor-authentication by passing the google authenticator code.
var googleAuthenticatorCode = "<googleAuthenticatorCode>"; //Required
var secondFactorAuthenticationToken = "<secondFactorAuthenticationToken>"; //Required
var fields = null; //Optional
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaValidateGoogleAuthCode(googleAuthenticatorCode, secondFactorAuthenticationToken, fields, smsTemplate2FA, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Update Phone Number (PUT)
This API is used to update (if configured) the phone number used for Multi-factor authentication by sending the verification OTP to the provided phone number
var phoneNo2FA = "<phoneNo2FA>"; //Required
var secondFactorAuthenticationToken = "<secondFactorAuthenticationToken>"; //Required
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaUpdatePhoneNumber(phoneNo2FA, secondFactorAuthenticationToken, smsTemplate2FA, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Email Login (POST)
This API can be used to login by emailid on a Multi-factor authentication enabled LoginRadius site.
var email = "<email>"; //Required
var password = "<password>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var fields = null; //Optional
var loginUrl = "<loginUrl>"; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaLoginByEmail(email, password, emailTemplate, fields, loginUrl, smsTemplate, smsTemplate2FA, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Phone Login (POST)
This API can be used to login by Phone on a Multi-factor authentication enabled LoginRadius site.
var password = "<password>"; //Required
var phone = "<phone>"; //Required
var emailTemplate = "<emailTemplate>"; //Optional
var fields = null; //Optional
var loginUrl = "<loginUrl>"; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaLoginByPhone(password, phone, emailTemplate, fields, loginUrl, smsTemplate, smsTemplate2FA, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Validate Access Token (GET)
This API is used to configure the Multi-factor authentication after login by using the access token when MFA is set as optional on the LoginRadius site.
var accessToken = "<accessToken>"; //Required
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaConfigureByAccessToken(accessToken, smsTemplate2FA, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Resend Otp (GET)
This API is used to resending the verification OTP to the provided phone number
var secondFactorAuthenticationToken = "<secondFactorAuthenticationToken>"; //Required
var smsTemplate2FA = "<smsTemplate2FA>"; //Optional
LoginRadiusSDK.multiFactorAuthenticationApi.mfaResendOTP(secondFactorAuthenticationToken, smsTemplate2FA, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Reset Google Authenticator by Token (DELETE)
This API Resets the Google Authenticator configurations on a given account via the access token
var accessToken = "<accessToken>"; //Required
var googleauthenticator = true; //Required
LoginRadiusSDK.multiFactorAuthenticationApi.mfaResetGoogleAuthByToken(accessToken, googleauthenticator, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Reset SMS Authenticator by Token (DELETE)
This API resets the SMS Authenticator configurations on a given account via the access token.
var accessToken = "<accessToken>"; //Required
var otpauthenticator = true; //Required
LoginRadiusSDK.multiFactorAuthenticationApi.mfaResetSMSAuthByToken(accessToken, otpauthenticator, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Reset SMS Authenticator By UID (DELETE)
This API resets the SMS Authenticator configurations on a given account via the UID.
var otpauthenticator = true; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.multiFactorAuthenticationApi.mfaResetSMSAuthenticatorByUid(otpauthenticator, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
MFA Reset Google Authenticator By UID (DELETE)
This API resets the Google Authenticator configurations on a given account via the UID.
var googleauthenticator = true; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.multiFactorAuthenticationApi.mfaResetGoogleAuthenticatorByUid(googleauthenticator, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
PasswordLessLogin API
List of APIs in this Section:
- PUT : Passwordless Login Phone Verification
- GET : Passwordless Login by Phone
- GET : Passwordless Login By Email
- GET : Passwordless Login Verification
Passwordless Login Phone Verification (PUT)
This API verifies an account by OTP and allows the customer to login.
var passwordLessLoginOtpModel ={
"otp" : "<otp>",
"phone" : "<phone>"
}; //Required
var fields = null; //Optional
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.passwordLessLoginApi.passwordlessLoginPhoneVerification(passwordLessLoginOtpModel, fields, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Passwordless Login by Phone (GET)
API can be used to send a One-time Passcode (OTP) provided that the account has a verified PhoneID
var phone = "<phone>"; //Required
var smsTemplate = "<smsTemplate>"; //Optional
LoginRadiusSDK.passwordLessLoginApi.passwordlessLoginByPhone(phone, smsTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Passwordless Login By Email (GET)
This API is used to send a Passwordless Login verification link to the provided Email ID
var email = "<email>"; //Required
var passwordLessLoginTemplate = "<passwordLessLoginTemplate>"; //Optional
var verificationUrl = "<verificationUrl>"; //Optional
LoginRadiusSDK.passwordLessLoginApi.passwordlessLoginByEmail(email, passwordLessLoginTemplate, verificationUrl, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Passwordless Login Verification (GET)
This API is used to verify the Passwordless Login verification link. Note: If you are using Passwordless Login by Phone you will need to use the Passwordless Login Phone Verification API
var verificationToken = "<verificationToken>"; //Required
var fields = null; //Optional
var welcomeEmailTemplate = "<welcomeEmailTemplate>"; //Optional
LoginRadiusSDK.passwordLessLoginApi.passwordlessLoginVerification(verificationToken, fields, welcomeEmailTemplate, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Role API
List of APIs in this Section:
- PUT : Assign Roles by UID
- PUT : Upsert Context
- PUT : Add Permissions to Role
- POST : Roles Create
- GET : Roles by UID
- GET : Get Context with Roles and Permissions
- GET : Role Context profile
- GET : Roles List
- DELETE : Unassign Roles by UID
- DELETE : Delete Role Context
- DELETE : Delete Role from Context
- DELETE : Delete Additional Permission from Context
- DELETE : Account Delete Role
- DELETE : Remove Permissions
Assign Roles by UID (PUT)
This API is used to assign your desired roles to a given user.
var accountRolesModel ={
"roles" : [ "roles" ]
}; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.assignRolesByUid(accountRolesModel, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Upsert Context (PUT)
This API creates a Context with a set of Roles
var accountRoleContextModel ={
"roleContext" : [ {
"additionalPermissions" : ["<additionalPermissions>" ] ,
"context" : "<context>" ,
"expiration" : "<expiration>" ,
"roles" : ["<roles>" ]
} ]
}; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.updateRoleContextByUid(accountRoleContextModel, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Add Permissions to Role (PUT)
This API is used to add permissions to a given role.
var permissionsModel ={
"permissions" : [ "permissions" ]
}; //Required
var role = "<role>"; //Required
LoginRadiusSDK.roleApi.addRolePermissions(permissionsModel, role, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Roles Create (POST)
This API creates a role with permissions.
var rolesModel ={
"roles" : [ {
"name" : "<name>" ,
"permissions" : {"Permission_name":true}
} ]
}; //Required
LoginRadiusSDK.roleApi.createRoles(rolesModel, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Roles by UID (GET)
API is used to retrieve all the assigned roles of a particular User.
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.getRolesByUid(uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Get Context with Roles and Permissions (GET)
This API Gets the contexts that have been configured and the associated roles and permissions.
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.getRoleContextByUid(uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Role Context profile (GET)
The API is used to retrieve role context by the context name.
var contextName = "<contextName>"; //Required
LoginRadiusSDK.roleApi.getRoleContextByContextName(contextName, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Roles List (GET)
This API retrieves the complete list of created roles with permissions of your app.
LoginRadiusSDK.roleApi.getRolesList(, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Unassign Roles by UID (DELETE)
This API is used to unassign roles from a user.
var accountRolesModel ={
"roles" : [ "roles" ]
}; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.unassignRolesByUid(accountRolesModel, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Delete Role Context (DELETE)
This API Deletes the specified Role Context
var contextName = "<contextName>"; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.deleteRoleContextByUid(contextName, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Delete Role from Context (DELETE)
This API Deletes the specified Role from a Context.
var contextName = "<contextName>"; //Required
var roleContextRemoveRoleModel ={
"roles" : [ "roles" ]
}; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.deleteRolesFromRoleContextByUid(contextName, roleContextRemoveRoleModel, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Delete Additional Permission from Context (DELETE)
This API Deletes Additional Permissions from Context.
var contextName = "<contextName>"; //Required
var roleContextAdditionalPermissionRemoveRoleModel ={
"additionalPermissions" : [ "additionalPermissions" ]
}; //Required
var uid = "<uid>"; //Required
LoginRadiusSDK.roleApi.deleteAdditionalPermissionFromRoleContextByUid(contextName, roleContextAdditionalPermissionRemoveRoleModel, uid, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Account Delete Role (DELETE)
This API is used to delete the role.
var role = "<role>"; //Required
LoginRadiusSDK.roleApi.deleteRole(role, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Remove Permissions (DELETE)
API is used to remove permissions from a role.
var permissionsModel ={
"permissions" : [ "permissions" ]
}; //Required
var role = "<role>"; //Required
LoginRadiusSDK.roleApi.removeRolePermissions(permissionsModel, role, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Sott API
List of APIs in this Section:
- GET : Generate SOTT
Generate SOTT (GET)
This API allows you to generate SOTT with a given expiration time.
var timeDifference = 0; //Optional
LoginRadiusSDK.sottApi.generateSott(timeDifference, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
NativeSocial API
List of APIs in this Section:
- GET : Access Token via Facebook Token
- GET : Access Token via Twitter Token
- GET : Access Token via Google Token
- GET : Access Token using google JWT token for Native Mobile Login
- GET : Access Token via Linkedin Token
- GET : Access Token via Google AuthCode
Access Token via Facebook Token (GET)
The API is used to get LoginRadius access token by sending Facebook's access token. It will be valid for the specific duration of time specified in the response.
var fbAccessToken = "<fbAccessToken>"; //Required
LoginRadiusSDK.nativeSocialApi.getAccessTokenByFacebookAccessToken(fbAccessToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token via Twitter Token (GET)
The API is used to get LoginRadius access token by sending Twitter's access token. It will be valid for the specific duration of time specified in the response.
var twAccessToken = "<twAccessToken>"; //Required
var twTokenSecret = "<twTokenSecret>"; //Required
LoginRadiusSDK.nativeSocialApi.getAccessTokenByTwitterAccessToken(twAccessToken, twTokenSecret, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token via Google Token (GET)
The API is used to get LoginRadius access token by sending Google's access token. It will be valid for the specific duration of time specified in the response.
var googleAccessToken = "<googleAccessToken>"; //Required
var clientId = "<clientId>"; //Optional
var refreshToken = "<refreshToken>"; //Optional
LoginRadiusSDK.nativeSocialApi.getAccessTokenByGoogleAccessToken(googleAccessToken, clientId, refreshToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token using google JWT token for Native Mobile Login (GET)
This API is used to Get LoginRadius Access Token using google jwt id token for google native mobile login/registration.
var idToken = "<idToken>"; //Required
LoginRadiusSDK.nativeSocialApi.getAccessTokenByGoogleJWTAccessToken(idToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token via Linkedin Token (GET)
The API is used to get LoginRadius access token by sending Linkedin's access token. It will be valid for the specific duration of time specified in the response.
var lnAccessToken = "<lnAccessToken>"; //Required
LoginRadiusSDK.nativeSocialApi.getAccessTokenByLinkedinAccessToken(lnAccessToken, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Access Token via Google AuthCode (GET)
The API is used to get LoginRadius access token by sending Google's AuthCode. It will be valid for the specific duration of time specified in the response.
var googleAuthcode = "<googleAuthcode>"; //Required
LoginRadiusSDK.nativeSocialApi.getAccessTokenByGoogleAuthCode(googleAuthcode, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
WebHook API
List of APIs in this Section:
- POST : Webhook Subscribe
- GET : Webhook Subscribed URLs
- GET : Webhook Test
- DELETE : WebHook Unsubscribe
Webhook Subscribe (POST)
API can be used to configure a WebHook on your LoginRadius site. Webhooks also work on subscribe and notification model, subscribe your hook and get a notification. Equivalent to RESThook but these provide security on basis of signature and RESThook work on unique URL. Following are the events that are allowed by LoginRadius to trigger a WebHook service call.
var webHookSubscribeModel ={
"event" : "<event>",
"targetUrl" : "<targetUrl>"
}; //Required
LoginRadiusSDK.webHookApi.webHookSubscribe(webHookSubscribeModel, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Webhook Subscribed URLs (GET)
This API is used to fatch all the subscribed URLs, for particular event
var event = "<event>"; //Required
LoginRadiusSDK.webHookApi.getWebHookSubscribedURLs(event, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
Webhook Test (GET)
API can be used to test a subscribed WebHook.
LoginRadiusSDK.webHookApi.webhookTest(, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});
WebHook Unsubscribe (DELETE)
API can be used to unsubscribe a WebHook configured on your LoginRadius site.
var webHookSubscribeModel ={
"event" : "<event>",
"targetUrl" : "<targetUrl>"
}; //Required
LoginRadiusSDK.webHookApi.webHookUnsubscribe(webHookSubscribeModel, function(error, data){
if(error){
console.log(error);
return;
}
console.log(data);
});