Get list of predefined MW scrips
Request to be POSTed to uri : /NorenWClientTP/PreDefinedMW
Request Details
| Parameter Name | Possible value | Description |
|---|---|---|
| jData* | Should send json object with fields in below list | |
| jKey* | Key Obtained on login success. |
| Json Fields | Possible value | Description |
|---|---|---|
| uid* | Logged in User Id | |
| wlname* | Name of the Watchlist, for which scrip list is required. |
Response Details
Response data will be in json format with below fields:
| Json Fields | Possible value | Description |
|---|---|---|
| stat | Ok or Not_Ok | Market watch success or failure indication. |
| values | Array of json objects. (object fields given in below table) |
| Json Fields | Possible value | Description |
|---|---|---|
| exch | NSE, BSE,NFO ... | Exchange |
| tsym | Trading Symbol of the scrip (contract) | |
| token | Token of the scrip (contract) | |
| pp | Price precision | |
| ti | Tick Size | |
| ls | Lot Size |
Example
jData={ "uid":"{{USER_ID}}", "wlname":"NIFTY50"}&jKey=552636ffd5d8f659235e4af6dab0bccdcd5915d26ca07a074a4912e506ea960fSample Success Response
{ "stat": "Ok", "values": [ { "exch": "NSE", "token": "15083", "tsym": "ADANIPORTS-EQ", "pp": "2", "ls": "1", "ti": "0.05" }, { "exch": "NSE", "token": "236", "tsym": "ASIANPAINT-EQ", "pp": "2", "ls": "1", "ti": "0.05" }, { "exch": "NSE", "token": "5900", "tsym": "AXISBANK-EQ", "pp": "2", "ls": "1", "ti": "0.05" }, { "exch": "NSE", "token": "16669", "tsym": "BAJAJ-AUTO-EQ", "pp": "2", "ls": "1", "ti": "0.05" }, { "exch": "NSE", "token": "16675", "tsym": "BAJAJFINSV-EQ", "pp": "2", "ls": "1", "ti": "0.05" }, { "exch": "NSE", "token": "317", "tsym": "BAJFINANCE-EQ", "pp": "2", "ls": "1", "ti": "0.05" }, .... ]}