post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/addAccountNote
This is how you add notes to a specific account
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount) |
authorName | yes | string | Author Name |
notes | yes | string | Notes |
Sample Request
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
Response Parameters
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 |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"notesDetails": [
true,
[
{
"authorname": "Lauren",
"note": "Testing notes",
"createdDate": "2023-10-16"
}
]
]
}