addAccountNote

This is how you add notes to a specific account

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
authorNameyesstringAuthor Name
notesyesstringNotes

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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
notesDetailsstringArray 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"
      }
    ]
  ]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!