Get Udyam Aadhaar Result
Retrieve the result of an asynchronous Udyam Aadhaar verification.
curl -X GET "https://production.deepvue.tech/v1/verification/async/get-udyam-details?request_id=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://production.deepvue.tech/v1/verification/async/get-udyam-details?request_id=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://production.deepvue.tech/v1/verification/async/get-udyam-details?request_id=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://production.deepvue.tech/v1/verification/async/get-udyam-details?request_id=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://production.deepvue.tech/v1/verification/async/get-udyam-details?request_id=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"action": "verify_with_source",
"completed_at": "2025-01-30T14:00:55+05:30",
"created_at": "2025-01-30T14:00:33+05:30",
"error": "BAD_REQUEST",
"group_id": "8e16424a-58fc-4ba4-ab20-5bc8e7c3c41e",
"message": "Please enter a valid UAM number",
"request_id": "2db0ab31-ce7c-47f3-8488-f2298fc2a811",
"status": "failed",
"task_id": "3431c00d-64f7-47c4-acf5-55620d37beeb",
"type": "udyam_aadhaar"
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738210582933,
"transaction_id": "cec77f6594414f32a3947abc60bc04e1",
"sub_code": "INVALID_REQUEST_ID",
"message": "Invalid Request ID"
}
{
"detail": "Internal Server Error"
}
/v1/verification/async/get-udyam-details
ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Query Parameters
Responses
Overview
This API gives you back the complete result and verification details against your request ID received in the previous step. The endpoint retrieves asynchronous Udyam Aadhaar verification results using a previously obtained request identifier from an initial verification submission.
These are asynchronous endpoints that return a request ID and employ webhook mechanisms to deliver responses to your servers. The request ID can subsequently be used with the GET API to retrieve the verification outcome.
Last updated 4 weeks ago
Built with Documentation.AI