Automations

Add Lead Note Node

2 min readnode-add-note

Append a note to the lead's activity timeline for context, audit, or team visibility.

Add Lead Note Node

Writes a note to the lead's activity feed. Notes are visible to everyone with access to the lead record and serve as an audit trail of what happened in the automation.

When to use it
  • Log the AI qualification score and reasoning against a lead record.
  • Record that a payment link was sent, with the amount and timestamp.

---

Required fields
FieldTypeRequiredDescription
notestringYesNote text — {{variables}} supported

---

Variables available

This node does not produce output variables.

---

Step-by-step setup
  1. Add an Add Lead Note node.
  2. Write the note — include relevant variables: Lead scored {{variables.score}}/100 — {{variables.reason}}.
  3. Place it after the node whose output you want to log.

---

Example config

json { "note": "Automation ran at {{variables.timestamp}}. AI score: {{variables.score}}. Payment link sent: {{variables.stripeResult.url}}" }

---

Tips & gotchas
  • Notes are append-only — you can't edit them after the automation writes them.
  • Use notes liberally in complex automations to make debugging easier — they give you a full audit trail in the lead view.
  • Combine with Move Pipeline Stage and Create Task for a complete activity record.