Orders
With the order API, you can programmatically place orders in the stock market to automate your trading.You can place, modify and cancel orders using the API. You can also manage your orders and trades using the API.
Type | Endpoint | Description |
---|---|---|
POST | /order/:variety | Places order according to the order_type provided |
PATCH | /order/:variety/:order_id | Modify an existing open or pending order |
DELETE | /order/:variety/:order_id | Cancel an existing open or pending order |
GET | /order/:order_id | Retrieve the history of a given order |
GET | /user/orders | Retrieve the order book for the current trading day |
GET | /user/trades | Retrieve the list of executed trades for the current trading day |
Order Parameters
Order Parameter | Values Accepted | Description |
---|---|---|
variety | regular |
Regular order |
cover |
Cover Order | |
order type | LMT |
Limit order |
MKT |
Market order | |
SL-LMT |
Stoploss Limit Order | |
SL-MKT |
Stoploss Market order | |
product type | I |
Intraday Order |
C |
Delivery for Equity Market | |
M |
Normal Order for FnO | |
validity | DAY |
Regular order |
IOC |
Immediate or Cancel |
Order Placement
The order placement API's gives the user the power to place trades for instruments programmatically.
Regular Order
The regular order API allows the user to place single trade for the user.
curl --location 'https://api.tiqs.trading/order/regular' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
"exchange": "NFO",
"token": "54051",
"quantity": "15",
"disclosedQty": "0",
"product": "I",
"symbol": "BANKNIFTY2413147000CE",
"transactionType": "B",
"order": "LMT",
"price": "10",
"validity": "DAY",
"tags": "ok,ok2",
"amo": true,
"triggerPrice": "0"
}'
{
"data": {
"orderNo": "24012400000321",
"requestTime": "21:45:55 24-01-2024"
},
"status": "success"
}
Cover Order
The regular order API allows the user to place single trade for the user.
curl --location 'https://api.tiqs.trading/order/cover' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
"exchange": "NFO",
"token": "54051",
"quantity": "15",
"disclosedQty": "0",
"product": "I",
"symbol": "BANKNIFTY2413147000CE",
"transactionType": "B",
"order": "LMT",
"price": "10",
"validity": "DAY",
"tags": "ok,ok2",
"amo": false,
"triggerPrice": "0",
"bookLossPrice": "10"
}'
{
"data": {
"orderNo": "24012400000321",
"requestTime": "21:45:55 24-01-2024"
},
"status": "success"
}
Order Modification
The Order Modification endpoint allows the user to modify an already OPEN order.
curl --location --request PATCH 'https://api.tiqs.trading/order/regular/24032900000003' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
"exchange": "NFO",
"token": "41912",
"quantity": "15",
"disclosedQty": "0",
"product": "I",
"transactionType": "B",
"order": "LMT",
"price": "110",
"validity": "DAY",
"amo": true,
"triggerPrice": "0",
"tags": "",
"bookLossPrice": "0",
"bookProfitPrice": "0"
}'
Order Deletion
The Order Deletion endpoint allows the user to cancel an already OPEN order.
curl --location --request DELETE 'https://api.tiqs.trading/order/regular/24032900000003' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>'
{
"data": {
"message": "order cancellation request accepted"
},
"status": "success"
}
Order Details
The Order Details endpoint gives the details for a particular order placed.
curl --location 'https://api.tiqs.trading/order/24030700000042' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>'
{
"data": [
{
"status": "Ok",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"price": "0.00",
"quantity": "75",
"product": "I",
"orderStatus": "COMPLETE",
"reportType": "Fill",
"transactionType": "S",
"order": "MKT",
"fillShares": "75",
"averagePrice": "382.56",
"rejectReason": " ",
"exchangeOrderID": "1500000010518659",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"price": "0.00",
"quantity": "75",
"product": "I",
"orderStatus": "OPEN",
"reportType": "Fill",
"transactionType": "S",
"order": "MKT",
"fillShares": "30",
"averagePrice": "382.65",
"rejectReason": " ",
"exchangeOrderID": "1500000010518659",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"price": "0.00",
"quantity": "75",
"product": "I",
"orderStatus": "OPEN",
"reportType": "Fill",
"transactionType": "S",
"order": "MKT",
"fillShares": "15",
"averagePrice": "382.75",
"rejectReason": " ",
"exchangeOrderID": "1500000010518659",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"price": "0.00",
"quantity": "75",
"product": "I",
"orderStatus": "OPEN",
"reportType": "New",
"transactionType": "S",
"order": "MKT",
"fillShares": "",
"averagePrice": "",
"rejectReason": " ",
"exchangeOrderID": "1500000010518659",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"price": "0.00",
"quantity": "75",
"product": "I",
"orderStatus": "PENDING",
"reportType": "PendingNew",
"transactionType": "S",
"order": "MKT",
"fillShares": "",
"averagePrice": "",
"rejectReason": " ",
"exchangeOrderID": "",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"price": "0.00",
"quantity": "75",
"product": "I",
"orderStatus": "PENDING",
"reportType": "NewAck",
"transactionType": "S",
"order": "MKT",
"fillShares": "",
"averagePrice": "",
"rejectReason": " ",
"exchangeOrderID": "",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "",
"requestTime": "",
"errorMessage": ""
}
],
"status": "success"
}
Order Book
The Order Book endpoint allows the user to fetch all the orders for the current trading day
curl --location 'https://api.tiqs.trading/user/orders' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>'
{
"data": [
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C49000",
"id": "24030700000195",
"rejectReason": " ",
"price": "0.00",
"quantity": "75",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "COMPLETE",
"transactionType": "S",
"order": "MKT",
"fillShares": "75",
"averagePrice": "57.60",
"exchangeOrderID": "1500000067142704",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "42037",
"timeStamp": "10:45:00 07-03-2024",
"orderTime": "1709788500",
"exchangeUpdateTime": "07-03-2024 10:45:00",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "75",
"requiredPrice": "57.25",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000194",
"rejectReason": " ",
"price": "0.00",
"quantity": "75",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "COMPLETE",
"transactionType": "B",
"order": "MKT",
"fillShares": "75",
"averagePrice": "317.90",
"exchangeOrderID": "1500000067058440",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "10:44:57 07-03-2024",
"orderTime": "1709788497",
"exchangeUpdateTime": "07-03-2024 10:44:57",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "75",
"requiredPrice": "316.15",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C49000",
"id": "24030700000193",
"rejectReason": "RED:Sqroff Shortfall:INR 2,66,310.19 Available:INR 2,04,102.46 for C-AJ0101 [TEST]",
"price": "0.00",
"quantity": "75",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "REJECTED",
"transactionType": "S",
"order": "MKT",
"fillShares": "",
"averagePrice": "",
"exchangeOrderID": "",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "42037",
"timeStamp": "10:44:57 07-03-2024",
"orderTime": "1709788497",
"exchangeUpdateTime": "",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "0",
"requiredPrice": "0.00",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"rejectReason": " ",
"price": "0.00",
"quantity": "75",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "COMPLETE",
"transactionType": "S",
"order": "MKT",
"fillShares": "75",
"averagePrice": "382.56",
"exchangeOrderID": "1500000010518659",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"orderTime": "1709783953",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "75",
"requiredPrice": "382.55",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C49000",
"id": "24030700000041",
"rejectReason": " ",
"price": "0.00",
"quantity": "75",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "COMPLETE",
"transactionType": "B",
"order": "MKT",
"fillShares": "75",
"averagePrice": "81.70",
"exchangeOrderID": "1500000010460262",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "42037",
"timeStamp": "09:29:08 07-03-2024",
"orderTime": "1709783948",
"exchangeUpdateTime": "07-03-2024 09:29:08",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "75",
"requiredPrice": "81.75",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000006",
"rejectReason": "16278 The markets have not been opened for trading",
"price": "0.00",
"quantity": "15",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "REJECTED",
"transactionType": "B",
"order": "MKT",
"fillShares": "",
"averagePrice": "",
"exchangeOrderID": "1500000000001267",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "0",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"token": "41927",
"timeStamp": "09:11:14 07-03-2024",
"orderTime": "1709782874",
"exchangeUpdateTime": "07-03-2024 09:11:14",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "15",
"requiredPrice": "410.10",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NSE",
"symbol": "AARTIIND-EQ",
"id": "24030700000005",
"rejectReason": "ORA:Exchange NSE not enabled for User AJ0101",
"price": "0.00",
"quantity": "1",
"marketProtection": "0.00",
"product": "I",
"orderStatus": "REJECTED",
"transactionType": "B",
"order": "MKT",
"fillShares": "",
"averagePrice": "",
"exchangeOrderID": "",
"cancelQuantity": "",
"remarks": "",
"disclosedQuantity": "",
"orderTriggerPrice": "",
"retention": "DAY",
"bookProfitPrice": "",
"bookLossPrice": "",
"trailingPrice": "",
"amo": "",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "1",
"token": "7",
"timeStamp": "09:10:56 07-03-2024",
"orderTime": "",
"exchangeUpdateTime": "",
"snoOrderDirection": "",
"snoOrderID": "",
"priceFactor": "1.000000",
"multiplier": "1",
"displayName": "",
"requiredQuantity": "",
"requiredPrice": "",
"requiredTriggerPrice": "",
"requiredBookLossPrice": "",
"requiredOriginalQuantity": "",
"requiredOriginalPrice": "",
"originalTriggerPrice": "",
"originalBookLossPrice": ""
}
],
"status": "success"
}
Trade Book
The Trade Book endpoint list all of the trades that took place for the current trading day
curl --location 'https://api.tiqs.trading/user/trades' \
--header 'appId: <YOUR_APP_ID>' \
--header 'token: <YOUR_TOKEN>'
{
"data": [
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C49000",
"id": "24030700000195",
"quantity": "75",
"product": "I",
"transactionType": "S",
"order": "MKT",
"fillShares": "75",
"averagePrice": "57.60",
"exchangeOrderID": "1500000067142704",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 10:45:00",
"fillID": "431466313",
"fillPrice": "57.60",
"fillQuantity": "60",
"orderSource": "",
"token": "42037",
"timeStamp": "10:45:00 07-03-2024",
"exchangeUpdateTime": "07-03-2024 10:45:00",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C49000",
"id": "24030700000195",
"quantity": "75",
"product": "I",
"transactionType": "S",
"order": "MKT",
"fillShares": "15",
"averagePrice": "57.60",
"exchangeOrderID": "1500000067142704",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 10:45:00",
"fillID": "431466312",
"fillPrice": "57.60",
"fillQuantity": "15",
"orderSource": "",
"token": "42037",
"timeStamp": "10:45:00 07-03-2024",
"exchangeUpdateTime": "07-03-2024 10:45:00",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000194",
"quantity": "75",
"product": "I",
"transactionType": "B",
"order": "MKT",
"fillShares": "75",
"averagePrice": "317.90",
"exchangeOrderID": "1500000067058440",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 10:44:57",
"fillID": "431463744",
"fillPrice": "317.90",
"fillQuantity": "75",
"orderSource": "",
"token": "41927",
"timeStamp": "10:44:57 07-03-2024",
"exchangeUpdateTime": "07-03-2024 10:44:57",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"quantity": "75",
"product": "I",
"transactionType": "S",
"order": "MKT",
"fillShares": "75",
"averagePrice": "382.56",
"exchangeOrderID": "1500000010518659",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 09:29:13",
"fillID": "430367637",
"fillPrice": "382.50",
"fillQuantity": "45",
"orderSource": "",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"quantity": "75",
"product": "I",
"transactionType": "S",
"order": "MKT",
"fillShares": "30",
"averagePrice": "382.65",
"exchangeOrderID": "1500000010518659",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 09:29:13",
"fillID": "430367636",
"fillPrice": "382.55",
"fillQuantity": "15",
"orderSource": "",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C48000",
"id": "24030700000042",
"quantity": "75",
"product": "I",
"transactionType": "S",
"order": "MKT",
"fillShares": "15",
"averagePrice": "382.75",
"exchangeOrderID": "1500000010518659",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 09:29:13",
"fillID": "430367635",
"fillPrice": "382.75",
"fillQuantity": "15",
"orderSource": "",
"token": "41927",
"timeStamp": "09:29:13 07-03-2024",
"exchangeUpdateTime": "07-03-2024 09:29:13",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
},
{
"status": "Ok",
"userID": "AJ0101",
"accountID": "AJ0101",
"exchange": "NFO",
"symbol": "BANKNIFTY13MAR24C49000",
"id": "24030700000041",
"quantity": "75",
"product": "I",
"transactionType": "B",
"order": "MKT",
"fillShares": "75",
"averagePrice": "81.70",
"exchangeOrderID": "1500000010460262",
"remarks": "",
"retention": "DAY",
"pricePrecision": "2",
"tickSize": "0.05",
"lotSize": "15",
"customFirm": "",
"fillTime": "07-03-2024 09:29:08",
"fillID": "430366559",
"fillPrice": "81.70",
"fillQuantity": "75",
"orderSource": "",
"token": "42037",
"timeStamp": "09:29:08 07-03-2024",
"exchangeUpdateTime": "07-03-2024 09:29:08",
"snoOrderDirection": "",
"snoOrderID": "",
"requestTime": "",
"errorMessage": ""
}
],
"status": "success"
}