Infinn API Documentation
Login and User Details

Forgot Password

POST/NorenWClientAPI/ForgotPassword

Authorization token is required. Enter your access_token from GenAcsTok above.

"Use proxy" sends this request through this website's server, which never logs request or response bodies. Infinn sees the docs server's IP, not yours. Turn it off to send directly from your browser instead.

jData fields

Values are sent as a JSON string in the jData form field.

User Id of the user

  • Example: YOUR_USER_ID
  • Where to get it: The ID you log in with at trade.infinn.in (User ID = Client ID). Also returned as uid by GenAcsTok.

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.

⚠ When "Use proxy" is on, this token is sent through this website's server on its way to Infinn. It is never logged here, but if you would rather it never leave your browser, turn off "Use proxy" above or use the ready code with your own client instead.

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\" }"

</details>
curl --request POST \
  --url 'https://api.infinn.in/NorenWClientAPI/ForgotPassword' \
  --header 'Authorization: Bearer PASTE_ACCESS_TOKEN_HERE' \
  --header 'Content-Type: text/plain' \
  --data 'jData={"uid":"YOUR_USER_ID","pan":"","dob":""}'
Response will appear here after sending a request