getOrdersForADay

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
datenostringDate (MM-DD-YYYY)

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

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
orderDetailsstringArray of all the orders includes all information of the matched order

Sample Response

{
      "statusCode":"101",
      "statusDesc":"Ok",
      "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"
                }
            ]
             }]"
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!