Parameter | Required | Type | Description |
---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer API Key |
noteId | yes | string | Note ID that is generated by the API once a trade note is created (addTradeNote) |
authorName | no | string | Author Name |
notes | no | string | Notes |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateTradeNote
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d authorName=authorName
-d notes=notes
-d noteId=1456
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 noteId |
{
"statusCode": "101",
"statusDesc": "Ok",
"notesDetails": [
true,
[
{
"noteId": "2821",
"authorname": "Prabhu",
"note": "testing2",
"createdDate": "2022-03-16"
}
]
]
}