For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
HomeAPI Reference
HomeAPI Reference
  • Overview
    • API Overview
  • Vlens API
      • GETList available product types
      • GETGet form fields for a product type
      • GETCheck user eligibility
      • POSTCreate a business request
      • GETGet current business request
      • GETList user's business requests
      • GETList business request IDs and statuses
      • GETGet business request by ID
      • POSTRequest contract activation OTP
      • POSTRe-validate liveness after location change
      • POSTValidate contract activation OTP
      • POSTConfirm payment and activate contract
      • POSTGenerate WebView signing URL
      • GETDownload contract PDF
Dashboard
LogoLogo
Vlens APIBusiness Request

List business request IDs and statuses

||View as Markdown|
GET
https://api.vlenseg.com/api/BusinessRequest/CurrentListIds
GET
/api/BusinessRequest/CurrentListIds
$curl https://api.vlenseg.com/api/BusinessRequest/CurrentListIds \
> -H "ApiKey: <apiKey>" \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "data": [
3 {
4 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
5 "typeName": "Identity Verification",
6 "type": 2,
7 "contractTypeId": 5,
8 "contractTypeName": "Standard E-Contract",
9 "idNumber": "EG12345678901234",
10 "requestNumber": "REQ-20240615-0001",
11 "fullName": "Ahmed Mohamed Ali",
12 "requeststatus": 4,
13 "requestStatusName": "Customer Signed",
14 "creationTime": "2024-06-10T14:22:00Z"
15 }
16 ],
17 "totalCount": 1,
18 "returnedCount": 1,
19 "error_code": null,
20 "error_message": null,
21 "error_descriptions": null
22}

A lightweight alternative to CurrentList that returns only the request ID, status, and minimal metadata — without documents or form fields. Use for list views or status polling.

Was this page helpful?
Previous

List user's business requests

Next

Get business request by ID

Built with

Authentication

ApiKeystring
Static API key issued to your tenant. Obtain from the Vlens dashboard.
AuthorizationBearer

Short-lived JWT. Obtain via:

  • /api/credentials/Login for admin / service tokens
  • /api/DigitalIdentity/Register or login for end-user tokens

Query parameters

skipCountintegerOptional
MaxResultCountintegerOptional

Response

Paginated list of request summaries.
datalist of objects or null
totalCountinteger
returnedCountinteger
error_codeinteger or null
error_messagestring or null
error_descriptionsany or null