Notes
The Note resource is the way to leave comments related to contacts or accounts in Salesmachine. Notes can be viewed individually or as a list.
A note object contains the following fields
Attribute | Type | Description |
object | string | Value is ‘note’ |
id | string | Salesmachine internal id representing the note |
created_at | timestamp | The time (in seconds) the note was added to Salesmachine |
body | string | The Note content. [Deprecated] 'body' attribute replace 'note' |
account | object | The account linked to this note |
contact | object | The contact linked to this note |
author | object | Reference to the user who created this note |
{
"object": "note",
"id": "5d3bae5bcb4a287b44583a55",
"created_at": 1564192347,
"subject": "My note",
"body": "content of the note",
"account":{
"object": "account",
"id": "5d3bae5bcb4a287b44583a55"
},
"author": {
"object": "user",
"id": "5a9d0d70ec8d83231af64745"
}
}
Last modified 3yr ago