notes_update
Update an existing note's content, entity associations, or pinned status in Pipedrive. Supports rich text and targeted pinning to deals, persons, organizations, or leads.
Instructions
Update an existing note.
Updates note content, entity associations, or pinned status.
Workflow tips:
All fields except id are optional
Can update content (supports HTML)
Can change entity associations
Can pin/unpin to specific entities
Content supports rich text formatting
At least one field should be updated
Common use cases:
Update content: { "id": 123, "content": "Updated information" }
Pin to deal: { "id": 123, "pinned_to_deal_flag": true }
Change association: { "id": 123, "person_id": 456 }
Update and pin: { "id": 123, "content": "New content", "pinned_to_person_flag": true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the note to update | |
| content | No | New note content (supports HTML, max 65000 chars) | |
| deal_id | No | New deal ID to attach to | |
| person_id | No | New person ID to attach to | |
| org_id | No | New organization ID to attach to | |
| lead_id | No | New lead ID to attach to | |
| pinned_to_deal_flag | No | Pin/unpin note to deal | |
| pinned_to_person_flag | No | Pin/unpin note to person | |
| pinned_to_organization_flag | No | Pin/unpin note to organization | |
| pinned_to_lead_flag | No | Pin/unpin note to lead |