| Parameter | Required | Type | Description | 
|---|
| clientID | yes | string | TransactAPI Client ID | 
| developerAPIKey | yes | string | TransactAPI Developer 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
                }
            ]
        }
    ]
}