Mailchimp Developers Release Notes
Last updated: Jan 15, 2026
- Aug 19, 2025
- Parsed from source:Aug 19, 2025
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
Mailchimp Transactional status added to server status page
We’ve added live status tracking for Mailchimp Transactional API's servers to the Mailchimp Server Status page. The page shows the current status and a history of recent service outages and their resolutions to help you troubleshoot your API calls and responses.
WHY
This lets you check the status of the Mailchimp Transactional servers quickly and easily, on the same page as our other servers.
Original source Report a problem - Aug 7, 2025
- Parsed from source:Aug 7, 2025
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
New Audiences endpoints (BETA)
Mailchimp unveils Audiences Endpoints in BETA, letting SMS-only contacts be added and managed with create, update, read, forget, and archive—no email required. For testing and evaluation, these beta endpoints may have bugs and can change or be withdrawn at any time.
MARKETING
WHAT
We’ve launched new Audiences endpoints (BETA) as an alternative to our List Members endpoints. These allow for contacts to be added with just an SMS number. These endpoints are still in BETA but includes the following capabilities: create, update, read, forget and archive a contact without reliance on an email value.
The Audiences Endpoints (BETA) are available for evaluation or testing purposes only, may contain bugs or errors, and may not be as reliable as other Mailchimp features. Intuit may modify or discontinue this feature at any time without notice. By accessing the endpoints you agree to the Audiences Endpoints (BETA) Terms of Use. Consent must be accurately mapped to the supported marketing consent values. Unsupported values, including opt-outs, must be updated manually. See the Audiences (BETA) developer document for terms and additional details.
WHY
Previously, the creation of a contact via our API relied on the presence of an email. We’re launching this new endpoint to allow for SMS customers to bring over their full contact list, including contacts with no email.
Original source Report a problem - Dec 6, 2024
- Parsed from source:Dec 6, 2024
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
Overwriting campaign_id and outreach_id
Mailchimp rolls out a native attribution model across all e commerce integrations to improve insights on how campaigns drive purchases. Update or deprecate campaign_id or outreach_id usage with Add/Update Order APIs to align with the new model and simplify reporting.
MARKETING
WHAT
We've started writing over the campaign_id or outreach_id values on Orders to align with our new attribution model and user-configured settings. If your integration is sending campaign_id or outreach_id with Add Order or Update Order API calls, we recommend deprecating that logic.
WHY
We’re rolling out Mailchimp's native attribution model across all e-commerce integrations. This new model gives you more complete insights into how marketing campaigns contribute to customer purchases. It also improves marketing performance reporting for all Mailchimp customers using e-commerce integrations. Additionally, this reduces the need for complex custom logic for attributing orders to specific marketing messages.
Original source Report a problem - Jun 17, 2024
- Parsed from source:Jun 17, 2024
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
Webhook retry interval increased
TRANSACTIONAL
WHAT
We’ve increased the number of times that a webhook will retry when we don’t initially receive a 200 response. We will now retry up to 20 times, at intervals of 15-25 minutes per retry. After 20 unsuccessful attempts, the webhook will be disabled.
WHY
Increasing this interval gives users more time to troubleshoot their webhook endpoint, and retains the webhook payload for longer.
Original source Report a problem - Feb 12, 2024
- Parsed from source:Feb 12, 2024
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
Updated Mailchimp Transactional client libraries
Updated PHP client now PHP 8.2 compatible and Node.js client updated to Axios latest to patch a security vulnerability. These changes improve compatibility and secure request handling.
TRANSACTIONAL
WHAT
We've published an updated package for the PHP client library that is compatible with PHP 8.2.
We've also published an updated package for the Node.js client library that uses the latest version of Axios to address a security vulnerability.
WHY
Older versions of the PHP client library caused errors when used with PHP 8.2.
A vulnerability was found in versions 0.8.1 through 1.5.1 of Axios, which unintentionally exposed the XSRF-TOKEN that was stored in cookies by including it in the X-XSRF-TOKEN HTTP header for all requests to any host. This allowed malicious actors possible access to sensitive data. To address this issue, we have updated the Node.js client library to use the latest version of Axios.
Original source Report a problem - Dec 19, 2023
- Parsed from source:Dec 19, 2023
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
New sending domain authentication requirements
Mailchimp Transactional enforces new domain authentication from March 15 2024. Users must add DKIM and DMARC records or Mandrill will be used as the sending domain; app and docs updated and testing now available in Sending Domains.
TRANSACTIONAL
WHAT
Beginning on March 15, 2024, we'll be enforcing new sending domain authentication requirements that you'll need to act on.
WHY
Google and Yahoo recently announced new sending requirements that will go into effect soon. To comply with these changes, Mailchimp Transactional users will have to update their DKIM records and enact a DMARC policy on any sending domain that might be used.
If you fail to update your domain’s authentication, we’ll use a mandrillapp.com subdomain as the sending domain for your email address, but replies from recipients will still go to your email address. This change will apply to any email sent through Mandrill that is currently authenticated but doesn't meet our new authentication requirements after March 15.
Here's how you can get started:
DKIM
- Create two CNAME records: one with the name mte1._domainkey.yourdomain.com with the value dkim1.mandrillapp.com, and another with the name mte2._domainkey.yourdomain.com and the value dkim2.mandrillapp.com
DMARC
- Create and save a TXT record in your DNS with a name of _dmarc.yourdomain.com and a value of v=DMARC1; p=none
Replace yourdomain.com with the domain you're setting up. Some domain hosts automatically add yourdomain.com after the initial value—contact your domain provider for any specifics.
We’ve updated the Mailchimp Transactional app and documentation to include these instructions, and to give you the ability to test these records on your Sending Domains page.
Original source Report a problem - Jun 17, 2023
- Parsed from source:Jun 17, 2023
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
Response code updated for invalid template name
API responses are getting smarter for template errors. Invalid template requests will now return 404 Not Found instead of 500, helping clients handle failures more reliably. The rollout will happen incrementally over the coming weeks, so teams may need to adjust their code.
TRANSACTIONAL
WHAT
We’ve been updating our API responses recently to provide a more semantic response for the requests you make. With this release, we’re changing the way our API responds if you provide an invalid template name when requesting template information or if you try to send a message using a template that doesn’t exist. Once this change goes live, we’ll respond with an HTTP 404 Not Found.
If you’re specifically targeting HTTP response codes other than 200, you may need to update your code. We’re releasing this change incrementally over the next few weeks.
WHY
Previously, we responded with an HTTP 500 Server Error when you provided an invalid template name or slug. We’re updating this to bring our response in line with proper semantics and allow more efficient status monitoring.
Original source Report a problem - Jun 5, 2023
- Parsed from source:Jun 5, 2023
- Detected by Releasebot:Jan 15, 2026
Mailchimp Developers by Intuit
Retiring legacy versions of Transport Layer Security (TLS) protocol
TRANSACTIONAL
WHAT
As of July 18, 2023, Mailchimp Transactional no longer supports Transport Layer Security protocol (TLS) v1.0 and v1.1. We already support TLS v.1.2 and above. If you're not using TLS v1.2 or above, this may require coding changes.
WHY
TLS v1.0 and v.1.1 have been sunsetted so we are making the corresponding changes.
Original source Report a problem
This is the end. You've seen all the release notes in this feed!