Robeeta Cloud Veri5 - Help Document

Robeeta Cloud Veri5 - Help Document

Aadhaar OTP

Veri5 Send Aadhaar OTP API Documentation

This API allows you to generate an OTP (One-Time Password) for the Aadhaar number provided, which will be sent to the mobile number linked to the Aadhaar number. The OTP is required for Aadhaar verification. The OTP is generated by the UIDAI (Issuing Authority) and not stored on our servers.

Process Overview:

  • Generate OTP: First, request an OTP using the Aadhaar OTP API. This request sends an OTP to the mobile number linked with the Aadhaar number.
  • Verify Aadhaar: Once the OTP is received, use the Aadhaar Verify endpoint to submit the OTP to verify the Aadhaar number.

POST https://api.veri5.cloud.robeeta.com/Veri5/SendAadharOtp

Authorization: Api key

Header: Content-Type: application/json

Request Body

  • AccessKey: string - (required) The API key for authorization.
  • AadharNumber: string - (required) The Aadhaar number for which OTP is to be generated.

Response Body

  • Response: string - A message indicating the outcome of the request.
Sample Request:
curl -X POST \nhttps://api.veri5.cloud.robeeta.com/Veri5/SendAadharOtp\\\n-H "Content-Type: application/json" \\\n-d '{\n  "AccessKey": "string",\n  "AadharNumber": "string"\n}'
Response:
{
  "Response": "string",
  "AccessToken": "string"
}