Links

Activities

The Activity resource represent the log of actions performed on an account or a contact. Activities can be viewed individually or as a list.

Model

Attribute
Type
Description
object
string
Value is ‘activity’
type
string
Represent the type of activity call, meeting, email
id
string
The Salesmachine internal id representing the activity
created_at
timestamp
The time (in seconds) the activity was added to Salesmachine
completed_at
timestamp
The time (in seconds) the activity was executed
subject
string
The activity subject (sometime empty here for compatibility with external applications).
note
string
The content of the activity.
accounts
list
List of accounts linked to this activity
contacts
list
List of contacts linked to this activity
author
object
Reference to the user who created this note
{
"object": "activity",
"type": "call",
"id": "5d4d879ef92ea143f0e3e0b5",
"created_at": 1565362078,
"completed_at": 1565361921,
"subject": "Call with John",
"note": "< text here ...> ",
"accounts": [
{
"object": "account",
"id": "5aa42e5ecb4a290c579aeec8"
}
],
"author": {
"object": "user",
"id": "5a9d0d70ec8d83231af64745"
}
}