Links

Contacts

The Contacts resource is the primary way of interacting with Salesmachine. You can create, update and delete your contacts, and add custom attributes describing them. Contacts can be viewed individual

Model

Attribute
Type
Description
object
string
Value is ‘contact’
id
string
The Salesmachine internal id representing the contact
created_at
timestamp
The time (in seconds) the contact was added to Salesmachine
unique_id
string
The contact unique_id you have defined for the contact.
archived
boolean
True if the contact has been archived
data
object
The custom attributes you have set on the contact.
salesmachine
object
The salesmachine metrics
accounts
list
A list of accounts for the contact
{
"object": "contact",
"id": "5d3bae5bcb4a287b44583a55",
"unique_id": "5d3bae4cf92ea13a3dfb542e",
"created_at": 1564192347,
"archived": false,
"data": {
"name": "John Doe"
},
"salesmachine": {
"health": "good"
},
"stage": {
"name": "Trial",
"id": "5b2bc014ce8d8355c6d48b70"
},
"accounts": {
"object": "account.list",
"data": [
{
"id": "5d3bae278cae234bef95405a"
}
]
}
}