add_lead_comment
Write an internal follow-up note on a lead, visible only to team members, and optionally attach the related submission record id for context.
Instructions
Write an internal follow-up note on a lead of the current team (visible to team members only, never to the respondent). Max 2000 characters. Optionally attach the record id of the submission the note is about, as context. Read existing notes with get_lead(includeComments: true). Not idempotent: if the call times out it may still have succeeded, so retrying blindly can create a duplicate — check first, then retry only if it is really missing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | The note text | |
| leadId | Yes | The lead id (the leadId returned by list_leads) | |
| recordId | No | Optional record id this note is about (as returned by get_lead records / list_records) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | The note text as stored | |
| leadId | No | The lead it was written on | |
| commentId | No | The created note | |
| createdAt | No | ISO datetime |