Exchange Status
Request to be POSTed to uri : /NorenWClientAPI/ExchStatus
Request Details :
| Parameter Name | Possible value | Description |
|---|---|---|
| jData* | Should send json object with fields in below list |
| Json Fields | Possible value | Description |
|---|---|---|
| uid* | Logged in User Id |
Example:
curl --location 'https://api.kambala.co.in/NorenWClientAPI/ExchStatus' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Bearer ab2f4117bce53f6b6900c73eebe520468ceea148a3bc4423a973514150f3c415' \
--data 'jData={"uid":"DEMO", "tsym":"ACC-EQ", "exch":"NSE","strprc":"210.00","cnt":"1"}'
Response Details :
Response data will have below fields.
| Json Fields | Possible value | Description |
|---|---|---|
| stat | success or failure indication. | |
| exch | Exchange Segment | |
| exchstat | Exchange status | |
| exchtype | Exch Type | |
| description | Description [#] | |
| norentm | Noren Time Stamp [#] | |
| noren_nsecs | Noren Nanoseconds [#] | |
| exch_tm | Exchange Timestamp [#] |
[#] - By Default disabled and Enabled on request basis.
Sample Success Response :
[
{
"stat":"Ok",
"exch":"MCX",
"exchstat":"OPEN",
"exchtype":"NORMAL",
"description":"15-Feb-2023 09:00:00 The Normal market has opened for 15 FEB 2023.",
"norentm":"1683279243",
"noren_nsecs":"883504436",
"exch_tm":"05-05-2023 15:04:03"
}
]
Sample Failure Response :
{
"stat":"Not_Ok",
"emsg":"Session Expired : Invalid Session Key"
}