Skip to main content

Pure Chat Mailchimp Integration |top| May 2026

This feature allows you to connect chat conversations (or captured leads from Pure Chat) directly to Mailchimp lists/tags for automated email marketing. Goal: Automatically add chat users (who provide email/name) to a Mailchimp audience when a chat ends, or after a custom trigger (e.g., agent tags the chat as "lead").

Authorization: Bearer YOUR_ACCESS_TOKEN Content-Type: application/json pure chat mailchimp integration

Endpoint: PUT https://server.api.mailchimp.com/3.0/lists/list_id/members/subscriber_hash This feature allows you to connect chat conversations

resp = requests.put( f"https://config['dc'].api.mailchimp.com/3.0/lists/config['list_id']/members/subscriber_hash", headers="Authorization": f"Bearer config['access_token']", json= "email_address": data['visitor']['email'], "status_if_new": "subscribed" if not config['double_opt_in'] else "pending", "merge_fields": merge_fields, "tags": ["pure-chat", data.get('agent_notes', '').lower().replace(' ', '-')] ) or after a custom trigger (e.g.