Skip to content

iVALT Authentication APIs (1.0.0)

The iVALT Authentication APIs provide secure, real-time user verification and session management through a single 1-Click experience. These APIs allow developers to authenticate users using mobile biometrics, device identity, and contextual factors such as location, IP, time window, and organization-defined rules.

Core Capabilities:

  • Verify user identity and device trust
  • Generate and validate authentication tokens
  • Submit biometric and geo-fence data for evaluation
  • Retrieve pass/fail results with factor-level detail
  • Enforce custom authentication policies defined in the iVALT Admin Portal

Use these endpoints to embed iVALT’s secure authentication workflow directly into your web or mobile applications.

Download OpenAPI description
Languages
Servers
Mock server
https://api-docs.ivalt.com/_mock/products/authentication/auth_apis/
Production server
https://api.ivalt.com/admin/public/api/

Auth Apis

Auth includes operations for verifying user credentials, managing session tokens, handling biometric validations, and enforcing geo-fencing rules. These APIs ensure secure and compliant access control for both users and administrators within the system.

Operations

Get login URL

Request

Retrieves login URL using authentication token and user details.

Security
ApiKeyAuth
Bodyapplication/json

Authentication token and URLs for login process

auth_tokenstringrequired

Auth token of post /api/v1/login/url request.

success_urlstringrequired

Success url of post /api/v1/login/url request.

cancel_urlstringrequired

Cancel url of post /api/v1/login/url request.

user_mobilestringrequired

User mobile of post /api/v1/login/url request.

curl -i -X POST \
  https://api-docs.ivalt.com/_mock/products/authentication/auth_apis/api/v1/login/url \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -d '{
    "auth_token": "Sample_Client_token",
    "success_url": "Sample_ClientId",
    "cancel_url": "Sample_Token_Example",
    "user_mobile": "6283974746"
  }'

Responses

Login URL retrieved successfully

Bodyapplication/json
statusstringrequired

Outcome of the request. Always success for 2xx responses.

Value"success"
Example: "success"
messagestringrequired

Short description of the successful operation outcome.

Example: "Operation completed successfully"
Response
application/json
{ "status": "success", "message": "Get login URL" }

Authenticate user by auth token and UID

Request

Retrieves user authentication status for given auth token and user ID.

Security
ApiKeyAuth
Path
auth_tokenstringrequired

Authentication token

uidstringrequired

User ID

curl -i -X GET \
  'https://api-docs.ivalt.com/_mock/products/authentication/auth_apis/api/v1/user/auth/{auth_token}/{uid}' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

User authenticated successfully

Bodyapplication/json
statusstringrequired

Outcome of the request. Always success for 2xx responses.

Value"success"
Example: "success"
messagestringrequired

Short description of the successful operation outcome.

Example: "Operation completed successfully"
Response
application/json
{ "status": "success", "message": "Authenticate user by auth token and UID" }

Retrieve user by email

Request

Fetches user details using their email address.

Security
ApiKeyAuth
Bodyapplication/json

Email address of the user to fetch

emailstringrequired

Email of post /get-user-by-email request.

curl -i -X POST \
  https://api-docs.ivalt.com/_mock/products/authentication/auth_apis/get-user-by-email \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -d '{
    "email": "bikramjeet1@ivalt.com"
  }'

Responses

User details retrieved successfully

Bodyapplication/json
statusstringrequired

Outcome of the request. Always success for 2xx responses.

Value"success"
Example: "success"
messagestringrequired

Short description of the successful operation outcome.

Example: "Operation completed successfully"
Response
application/json
{ "status": "success", "message": "Retrieve user by email" }