Login and User Details
Forgot Password
POST
/NorenWClientAPI/ForgotPasswordAuthorization token is required. Enter your access_token from GenAcsTok above.
jData fields
Values are sent as a JSON string in the jData form field.
User Id of the user
PAN of the user
Date of birth in DDMMYYYY format
Authorization Token
Required for all API calls. Use the access_token from the GenAcsTok response as a Bearer token.
Request Details
| Parameter Name | Possible value | Description |
|---|---|---|
| jData* | - | Should send JSON object with fields in below list |
| Authorization* | Bearer <access_token> | access_token from GenAcsTok response. Required for all API calls. |
JSON Fields
| JSON Fields | Possible value | Description |
|---|---|---|
| uid* | User Id | User Id of the user |
| pan* | PAN | PAN of the user |
| dob* | DDMMYYYY | Date of birth in DDMMYYYY format |
Example
curl https://api.infinn.in/NorenWClientAPI/ForgotPassword \
-d "jData={ \"uid\": \"user123\", \"pan\": \"ABCDE1234F\", \"dob\": \"01011990\" }"curl --request POST \
--url 'https://api.infinn.in/NorenWClientAPI/ForgotPassword' \
--header 'Content-Type: text/plain' \
--data 'jData={}'Response will appear here after sending a request