post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOrdersForADay
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
date | yes | string | Date (MM-DD-YYYY) |
limitStart | yes | integer | Defines the starting index of the pagination range |
limitEnd | yes | integer | Defines the ending index of the pagination range |
Note: By default, the API returns a maximum of 500 records per request. You can adjust this limit by specifying the limitStart
and limitEnd
parameters.
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOrdersForADay
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d date=06-22-2023
-d limitStart=1
-d limitEnd=100
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
pagination | string | Array of pagination range. |
orderDetails | string | Array of all the orders includes all information of the matched order |
Sample Response
{
"statusCode":"101",
"statusDesc":"Ok",
"pagination": {
"limitStart": 0,
"limitEnd": 100
},
"orderDetails":"[
{
"memberID":"A93601",
"accountID":null,
"security_id":73591,
"security_name":"Instacart",
"order_Id":495138670,
"order_type":"Offer",
"number_shares":18,
"shares_remaining":18,
"price_per_share":10,
"total_amount":180,
"PND":"N",
"Contingencies ":"None ",
"MinimumThreshold ":0,
"Solicited ":"Yes ",
"status":"Live",
"createdDate":"2021-03-04T11:24:59.000Z",
"updateDate":"0000-00-0000:00:00",
"createdIPAddress":"103.114.208.58"
"matchedOrders": [
{
"matchid": "764349622",
"executedPrice": "2.000000",
"executedQuantity": "5.000000",
"executedTotal Commitment": "10.000000",
"createdDate": "2022-06-14 06:39:10",
"updateDate": null,
"createdIPAddress": "10.0.0.1"
},
{
"matchid": "891806137",
"executedPrice": "2.000000",
"executedQuantity": "5.000000",
"executedTotal Commitment": "10.000000",
"createdDate": "2022-06-14 06:39:14",
"updateDate": null,
"createdIPAddress": "10.0.0.1"
}
]
}]"
}