-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events Not Supported #214
Comments
4 months ago. Is there an update on this? I in fact require this feature to complete some development work. |
@stephenross wondering why no contributor has commented here. Is a pull request needed to get event support going? |
@bramski thanks for your your reminder. |
@bramski, if it helps, I ended up implementing this myself. Here's some sample code: url = f"https://us20.api.mailchimp.com/3.0/lists/{list_id}/members/{email}/events"
payload = {
"name": "referred_friend",
"properties": {
"count": str(ref_count),
}
}
r = requests.post(url, auth=('[email protected]', 'apikey'), json=payload) |
Fixed by: #226 |
I don't see any way to use the events endpoint.
Is there a way I can access the HTTP client and manually make the request?
The text was updated successfully, but these errors were encountered: