Client Details
/NorenWClientAPI/ClientDetailsAuthorization 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 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 | Possible value | Description |
|---|---|---|
| uid* | Logged in User Id | |
| actid* | Login users account ID |
Response Details
Response data will be in json format with below fields:
| Json Fields | Possible value | Description |
|---|---|---|
| stat | Ok or Not_Ok | User details success or failure indication. |
| actid | Account ID | |
| creatdte | Creation date | |
| creattme | Creation time | |
| m_num | Mobile Number | |
| Email ID | ||
| pan | PAN | |
| dob | Date of birth in DDMMYYYY format | |
| act_sts | Account Status | |
| addr | Address | |
| addroffice | Office address | |
| addrcity | City | |
| addrstate | State | |
| bankdetails | Array Object, details given below. | |
| dp_acct_num | Array Object, details given below. | |
| exarr ["CDS","NSE","NFO","MCX","BSE","NCX","BSTAR","BCD"] | Json array of strings with enabled exchange names | |
| mandate_id_list | Mandate Id List (Array Object) | |
| partic_id_list | Partic Id List (Array Object) | |
| eqt_asba | True or False | |
| der_asba | True or False | |
| fx_asba | True or False | |
| com_asba | True or False | |
| request_time | It will be present only in a successful response. | |
| emsg | This will be present only in case of errors. |
bankdetails Obj format
| Json Fields | Possible value | Description |
|---|---|---|
| bankn | Bank name | |
| acctnum | Account number |
dp_acct_num Obj format
| Json Fields | Possible value | Description |
|---|---|---|
| dpnum | Dp account number |
mandate_id_list Obj format
| Json Fields | Possible value | Description |
|---|---|---|
| mandate_id | Mandate Id |
partic_id_list Obj format
| Json Fields | Possible value | Description |
|---|---|---|
| partic_id | Partic 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":""}'