update_member_note
Replace the text of an existing Mailchimp member note. Provide list ID, member email, note ID, and new note content to update.
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.
Authenticated via API key. Max 10 concurrent requests. Respects read-only and dry-run modes. 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 |
|---|---|---|---|
| list_id | Yes | ||
| email_address | Yes | ||
| note_id | Yes | ||
| note | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |