Infinn API Documentation
Login and User Details

Forgot Password

POST/NorenWClientAPI/ForgotPassword

Authorization 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 NamePossible valueDescription
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 FieldsPossible valueDescription
uid*User IdUser Id of the user
pan*PANPAN of the user
dob*DDMMYYYYDate 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