Salesmachine API
Home
Product documentation
Search…
v2.0
Welcome to Salesmachine API
Tracking API
Authentication
Javascript tracking
Contact
Account
Event
Access API
Authentication
Contacts
Accounts
Notes
Activities
Get an Activity
List activities
Tasks
Users
Errors
HTTP Responses
Rate Limiting
Changelog
Powered By
GitBook
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
1
{
2
"object"
:
"activity"
,
3
"type"
:
"call"
,
4
"id"
:
"5d4d879ef92ea143f0e3e0b5"
,
5
"created_at"
:
1565362078
,
6
"completed_at"
:
1565361921
,
7
"subject"
:
"Call with John"
,
8
"note"
:
"< text here ...> "
,
9
"accounts"
:
[
10
{
11
"object"
:
"account"
,
12
"id"
:
"5aa42e5ecb4a290c579aeec8"
13
}
14
],
15
"author"
:
{
16
"object"
:
"user"
,
17
"id"
:
"5a9d0d70ec8d83231af64745"
18
}
19
}
Copied!
Previous
List notes
Next
Get an Activity
Last modified
8mo ago
Copy link
Contents
Model