Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API's Client ID |
developerAPIKey | yes | string | Transact API's developer API Key |
matchId | yes | string | Match/Trade ID |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getMatchedTrade -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d matchId=232242322
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
matchedTradeDetails | string | Array of Trade Details |
{ "statusCode": "101", "statusDesc": "Ok", "matchedTradeDetails": [ { "executionTime": 1621589083.2639, "numberOfShares": 56, "Price": 8, "OrdersMatched": [ { "askOrderId": 23467891, "bidOrderId": 130486295 } ] } ] }