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) |
authorName | yes | string | Author Name |
notes | yes | string | Notes |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/addTradeNote
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d authorName=authorName
-d notes=notes
-d tradeId=123456
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
notesDetails | string | Array of trade notes includes all information of the matched trade |
{
"statusCode": "101",
"statusDesc": "Ok",
"notesDetails": [
true,
[
{
"noteId": "2822",
"authorname": "Prabhu",
"note": "testing",
"createdDate": "2022-03-16"
}
]
]
}