@@ -63,10 +63,10 @@ If client wants to use gRPC interface, client can generate client code from `api
63
63
64
64
To fetch captcha and session id from UIDAI.
65
65
66
- * ### ** gRPC FUNCTION NAME** - GetCaptcha
67
- * ### ** METHOD** - ` GET `
68
- * ### ** URL** - ` {{baseUrl}}/api/v1/GetCaptcha `
69
- * ### ** RESPONSE**
66
+ * #### ** gRPC FUNCTION NAME** - GetCaptcha
67
+ * #### ** METHOD** - ` GET `
68
+ * #### ** URL** - ` {{baseUrl}}/api/v1/GetCaptcha `
69
+ * #### ** RESPONSE**
70
70
``` json
71
71
{
72
72
"status" : {
@@ -86,10 +86,10 @@ Once captcha fetched, need to call this API with aadhaar number(uid_no) and capt
86
86
87
87
On success user will receive an OTP on phone number associated with aadhaar.
88
88
89
- * ### ** gRPC FUNCTION NAME** - VerifyCaptcha
90
- * ### ** METHOD** - ` POST `
91
- * ### ** URL** - ` {{baseUrl}}/api/v1/VerifyCaptcha `
92
- * ### ** REQUEST**
89
+ * #### ** gRPC FUNCTION NAME** - VerifyCaptcha
90
+ * #### ** METHOD** - ` POST `
91
+ * #### ** URL** - ` {{baseUrl}}/api/v1/VerifyCaptcha `
92
+ * #### ** REQUEST**
93
93
``` json
94
94
{
95
95
"session_id" : <string | session id>,
@@ -98,7 +98,7 @@ On success user will receive an OTP on phone number associated with aadhaar.
98
98
}
99
99
```
100
100
101
- * ### ** RESPONSE**
101
+ * #### ** RESPONSE**
102
102
``` json
103
103
{
104
104
"status" : {
@@ -112,10 +112,10 @@ On success user will receive an OTP on phone number associated with aadhaar.
112
112
113
113
Call this API with OTP received to download zip file from UIDAI and fetch details.
114
114
115
- * ### ** gRPC FUNCTION NAME** - VerifyOtpAndGetAadhaar
116
- * ### ** METHOD** - ` POST `
117
- * ### ** URL** - ` {{baseUrl}}/api/v1/VerifyOtpAndGetAadhaar `
118
- * ### ** REQUEST**
115
+ * #### ** gRPC FUNCTION NAME** - VerifyOtpAndGetAadhaar
116
+ * #### ** METHOD** - ` POST `
117
+ * #### ** URL** - ` {{baseUrl}}/api/v1/VerifyOtpAndGetAadhaar `
118
+ * #### ** REQUEST**
119
119
``` json
120
120
{
121
121
"session_id" : <string | session id>,
@@ -126,7 +126,7 @@ Call this API with OTP received to download zip file from UIDAI and fetch detail
126
126
}
127
127
```
128
128
129
- * ### ** RESPONSE**
129
+ * #### ** RESPONSE**
130
130
``` json
131
131
{
132
132
"status" : {
@@ -163,14 +163,14 @@ Call this API with OTP received to download zip file from UIDAI and fetch detail
163
163
```
164
164
165
165
# Response Status Codes
166
- * ### ** 2000** - Success
167
- * ### ** 4000** - Request validation errors
168
- * ### ** 5000** - Unknown error
169
- * ### ** 5001** - UIDAI technical issue error
170
- * ### ** 4002** - Invalid captcha
171
- * ### ** 4003** - Invalid OTP
172
- * ### ** 4004** - Invalid aadhaar number
173
- * ### ** 4005** - Session expired
174
- * ### ** 4006** - Invalid session id
175
- * ### ** 4090** - Aadhaar already downloaded error.
166
+ * #### ** 2000** - Success
167
+ * #### ** 4000** - Request validation errors
168
+ * #### ** 5000** - Unknown error
169
+ * #### ** 5001** - UIDAI technical issue error
170
+ * #### ** 4002** - Invalid captcha
171
+ * #### ** 4003** - Invalid OTP
172
+ * #### ** 4004** - Invalid aadhaar number
173
+ * #### ** 4005** - Session expired
174
+ * #### ** 4006** - Invalid session id
175
+ * #### ** 4090** - Aadhaar already downloaded error.
176
176
0 commit comments