Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
tradeId | yes | string | Trade ID that is generated by the API once a trade is created (createTrade) |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getTradeNote
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d tradeId=744564320
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
notesDetails | string | Returns the trade notes details as an array |
{
"statusCode": "101",
"statusDesc": "Ok",
"notesDetails": [
{
"developerAPIKey": "c6RvwiED46Fv3u38JpF9wKSKvS9jhY2ga5X",
"noteId": "2820",
"authorname": "Prabhu",
"note": "test",
"tradeId": "744564320",
"createdDate": "2022-03-16",
"createdIP": "117.221.66.35"
},
{
"developerAPIKey": "c6RvwiED46Fv3u38JpF9wKSKvS9jhY2ga5X",
"noteId": "2822",
"authorname": "Prabhu",
"note": "testing",
"tradeId": "744564320",
"createdDate": "2022-03-16",
"createdIP": "117.221.66.35"
}
]
}