| Parameter | Type | Required | Description |
|---|---|---|---|
| documentType | String | Yes | Type of verification. For this API use "Udyam Registration Check With Otp". |
| udyamRegistrationNo | String | Yes | Udyam Registration Number of the MSME to be verified. |
| mobileNumber | String | Yes | Mobile number linked with the Udyam registration. OTP will be sent to this number. |
| Parameter | Type | Description |
|---|---|---|
| requestId | String | Unique identifier generated for the verification request. |
| statusCode | Integer | Status code indicating the result of the verification request. |
| status | String | Status of the OTP request process (e.g., SUCCESS, FAILED). |
| message | String | Response message indicating the outcome of the OTP request. |
| error.status | String | Error status returned when the request fails. |
| error.message | String | Description of the error encountered during the verification process. |
| error.decryptedError | String | Detailed decrypted error message, if available. |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v1' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n udyamRegistrationNo: \"UDYAM-MH-26-0919938\"\r\n mobileNumber: \"7391073277\"\r\n documentType: \"Udyam Registration Check With Otp\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n ... on UdyamVerificationWithOtp {\r\n requestId\r\n statusCode\r\n result\r\n }\r\n }\r\n error {\r\n status\r\n message\r\n decryptedError\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"requestId": "18a205bf-3283-4e80-9ed2-3e8faa930fa3",
"statusCode": 101,
"result": {
"status": "SUCCESS",
"message": "OTP sent to entered mobile number"
}
},
"error": null
}
}
}