Salesmachine allows you to push customer data from Salesmachine anywhere through HTTPS Webhooks. Salesmachine customer data pushed are :

  • Contact our Account data

  • Health score : Account / Contact level

  • Stage : Account / Contact level

  • Link to Salesmachine profile : Account / Contact level

How it works
When Salesmachine updates a contact or account health score or stage, the info is pushed to your configured URL.

Data format

Example when a contact is updated manually inside Salesmachine the following message will be sent through the webhook

{
  "event":"contact_updated",
  "send_at":"2018-05-21T14:35:42.461Z",
  "version":"V2",
  "type":"contact",
  "unique_id":"contact_unique_id",
  "url":"https://my.salesmachine.io/contacts/1232",
  "salesmachine": {
      "health":"good",
      "mrr":120,
      "last_touch":null,
      "last_touch_call":null,
      "last_touch_meeting":null,
      "last_touch_email":null,
      "pulse":null,
      "stage":"default",
      "stage_url":"https://my.salesmachine.io/dashboard/123"
  },
  "data":{
     "name":"John Snow",
     "email":"[email protected]",
     "firstname":"John",
     "lastname":"Snow",
     "job_title":"CEO",
     "phone_number":"",
     "training": "done"
  }
}
Did this answer your question?