post deprecatedhttps://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAccountNotes
Log in to see full request history
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) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAccountNotes
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A12345
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status description |
notesDetails | string | Returns the account notes details as an array |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"notesDetails": [
{
"developerAPIKey": "MyG0RJZUhdP7wkZXi5NvSCV47OjYGvkg3I7",
"authorname": "jhon",
"note": "test",
"accountId": "A35513",
"createdDate": "09-10-2019",
"createdIP": "null",
}
]
}