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