Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount). |
authorname | yes | string | Author Name |
note | yes | string | Notes |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/addAccountNote -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d authorName=authorName -d notes=notes -d accountId=123456
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
notesDetails | string | Array of account notes includes all information of the matched account |
{ "statusCode":"101", "statusDesc":"Ok", "AccountNotesDetails":[{ "note":"notes", "authorName":"authorName", "createdDate":"createdDate", }] }