Infinn API Documentation
Change Password

Client Details

POST/NorenWClientAPI/ClientDetails

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.

Logged in User Id

  • 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.

Login users account ID

  • Example: YOUR_USER_ID
  • Where to get it: Same as User ID for individual accounts. Returned by GenAcsTok / UserDetails.

Login users broker ID

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 to be POSTed to url : /NorenWClientAPI/ClientDetails

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 FieldsPossible valueDescription
uid*Logged in User Id
actid*Login users account ID
Response Details

Response data will be in json format with below fields:

Json FieldsPossible valueDescription
statOk or Not_OkUser details success or failure indication.
actidAccount ID
creatdteCreation date
creattmeCreation time
m_numMobile Number
emailEmail ID
panPAN
dobDate of birth in DDMMYYYY format
act_stsAccount Status
addrAddress
addrofficeOffice address
addrcityCity
addrstateState
bankdetailsArray Object, details given below.
dp_acct_numArray Object, details given below.
exarr ["CDS","NSE","NFO","MCX","BSE","NCX","BSTAR","BCD"]Json array of strings with enabled exchange names
mandate_id_listMandate Id List (Array Object)
partic_id_listPartic Id List (Array Object)
eqt_asbaTrue or False
der_asbaTrue or False
fx_asbaTrue or False
com_asbaTrue or False
request_timeIt will be present only in a successful response.
emsgThis will be present only in case of errors.
bankdetails Obj format
Json FieldsPossible valueDescription
banknBank name
acctnumAccount number
dp_acct_num Obj format
Json FieldsPossible valueDescription
dpnumDp account number
mandate_id_list Obj format
Json FieldsPossible valueDescription
mandate_idMandate Id
partic_id_list Obj format
Json FieldsPossible valueDescription
partic_idPartic Id
curl --request POST \
  --url 'https://api.infinn.in/NorenWClientAPI/ClientDetails' \
  --header 'Authorization: Bearer PASTE_ACCESS_TOKEN_HERE' \
  --header 'Content-Type: text/plain' \
  --data 'jData={"uid":"YOUR_USER_ID","actid":"YOUR_USER_ID","brkname":""}'
Response will appear here after sending a request