Infinn API Documentation
Change Password

Validate HS Token

POST/NorenWClientAPI/ValidateHsToken

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.

Send sLoginId received from Initiator site

Key Obtained on login success.0

Authorization Token

Required for all API calls. Use the access_token from the GenAcsTok response as a Bearer token.

Request to be POSTed to url : /NorenWClientAPI/ValidateHsToken

(To be used only from server, Call this url from Browser / Client Side APKs)


Request Details

Parameter NamePossible valueDescription
LoginId*Send sLoginId received from Initiator site
token*Key Obtained on login success.0
Authorization*Bearer <access_token>access_token from GenAcsTok response. Required for all API calls.

Response Details

Response data will be in plain text format:

  1. ✅ TRUE -> if Token is valid
  2. ❌ FALSE -> for invalid User Id or Token.

External Integration (Backoffice URL..etc) Flow:

  1. Trading site will call the third-party URL on user clicking the specified link (eg: Back Office login).
  2. Trading site will pass the User id, Token, and Client ID to the third-party url.
  3. Third-party application/web server will make a server call to our web server using the “Validate HS Token” Url.
  4. If trading site web server says ok then Third party application will provide access to the user/client.
curl --request POST \
  --url 'https://api.infinn.in/NorenWClientAPI/ValidateHsToken' \
  --header 'Content-Type: text/plain' \
  --data 'jData={}'
Response will appear here after sending a request