update_member_note
Replace an existing member note's text entirely. Specify the list ID, member email, note ID, and the new note content.
Instructions
Update the text of an existing member note. Replaces the entire note body.
Use list_member_notes to find note_ids. Use add_member_note instead to create a new note rather than overwriting; use delete_member_note to remove a note.
Returns 404 if the note or member does not exist.
Args: list_id: Audience/list ID. Obtain from list_audiences. email_address: Email of the member who owns the note. note_id: Note ID to update. Obtain from list_member_notes. note: New note text (max 1000 chars). Replaces the previous text entirely.
Returns: JSON with id, email_address, note (new value), updated_at.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | ||
| account | No | ||
| list_id | Yes | ||
| note_id | Yes | ||
| email_address | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |