POST api/newopeninterest
Request Information
URI Parameters
None.
Body Parameters
OpenInterestDataModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Date | date |
None. |
|
| Symbol | string |
None. |
|
| InstrumentToken | string |
None. |
|
| FutureInstrumentToken | string |
None. |
|
| OpenInterest | integer |
None. |
|
| FuturePrice | decimal number |
None. |
|
| SpotPrice | decimal number |
None. |
|
| PriceChange | decimal number |
None. |
|
| OIChange | integer |
None. |
|
| CoC | decimal number |
None. |
|
| CocChange | decimal number |
None. |
|
| SignalObservation | string |
None. |
|
| SignalStrength | integer |
None. |
|
| SignalText | string |
None. |
|
| SignalColor | string |
None. |
|
| Market | string |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Date": "2026-03-15T14:55:36.681832+05:30",
"Symbol": "sample string 3",
"InstrumentToken": "sample string 4",
"FutureInstrumentToken": "sample string 5",
"OpenInterest": 6,
"FuturePrice": 7.0,
"SpotPrice": 8.1,
"PriceChange": 9.1,
"OIChange": 10,
"CoC": 11.0,
"CocChange": 12.0,
"SignalObservation": "sample string 13",
"SignalStrength": 14,
"SignalText": "sample string 15",
"SignalColor": "sample string 16",
"Market": "sample string 17",
"Remarks": "sample string 18"
}
application/xml, text/xml
Sample:
<OpenInterestDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/R2RDataManager.Library.Models"> <CoC>11</CoC> <CocChange>12</CocChange> <Date>2026-03-15T14:55:36.681832+05:30</Date> <FutureInstrumentToken>sample string 5</FutureInstrumentToken> <FuturePrice>7</FuturePrice> <Id>1</Id> <InstrumentToken>sample string 4</InstrumentToken> <Market>sample string 17</Market> <OIChange>10</OIChange> <OpenInterest>6</OpenInterest> <PriceChange>9.1</PriceChange> <Remarks>sample string 18</Remarks> <SignalColor>sample string 16</SignalColor> <SignalObservation>sample string 13</SignalObservation> <SignalStrength>14</SignalStrength> <SignalText>sample string 15</SignalText> <SpotPrice>8.1</SpotPrice> <Symbol>sample string 3</Symbol> </OpenInterestDataModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.