Digital Identity
  • Introduction
  • Quick Start
  • Reference
    • API Reference
      • Register
      • User Profile
      • Verify
      • CancelVerifiedDigitalIdentity
      • Get Verify Data
      • Login
      • Admin Login
      • Check Eligibility
      • Current
      • Get All Product Types
      • Get Business Request Type Template Fields
      • User Create Request
      • User Activate Request
      • ⚙️ Admin Control Panel
        • Login API
        • GetRequests API
        • GetContractToPdf
        • GetUsers
        • GetTransactionById API
        • CancelVerifiedDigitalIdentity
      • Error Codes
Powered by GitBook
On this page
  1. Reference
  2. API Reference

Check Eligibility

Check Eligibility for Create Business Request

GET https://api.vlenseg.com/api/BusinessRequest/CheckEligibility

This Api checks if the current is eligible for create new business request or not.

Headers

Name
Type
Description

Content-Type*

string

application/json

ApiKey*

string

API Key

Authorization*

string

Bearer Access Token `Bearer <accessToken>` that returned from login Api

{
  "data": {
    "isEligible": <bool>,
    "isDigitalIdentityVerified": <bool>,
    "hasPendingRequest": <bool>
  },
  "error_code": <int>,
  "error_message": <string>
}
{
  "data": null,
  "Services": null,
  "error_code": 401,
  "error_message": "Unauthorized – invalid API Key"
}

PreviousAdmin LoginNextCurrent

Last updated 1 year ago