https://github.com/elasticio/mailchimp-component
Mailchimp component for elastic.io platform
https://github.com/elasticio/mailchimp-component
eio-component ipaas
Last synced: 29 days ago
JSON representation
Mailchimp component for elastic.io platform
- Host: GitHub
- URL: https://github.com/elasticio/mailchimp-component
- Owner: elasticio
- Created: 2017-03-08T11:42:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T22:37:48.000Z (about 2 years ago)
- Last Synced: 2025-03-11T12:52:01.744Z (7 months ago)
- Topics: eio-component, ipaas
- Language: JavaScript
- Size: 610 KB
- Stars: 0
- Watchers: 11
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# mailchimp
Mailchimp connector for elastic.io platform## Actions
### Subscribe
Upserts information about the subscriber in the list,
if subscriber with given e-mail already exists
then information will be updated.
This method uses:
````PUT /lists/{list_id}/members/{subscriber_hash}````
see [here](http://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/#edit-put_lists_list_id_members_subscriber_hash)
for more information### Unsubscribe
This action unsubscribes user from the given list, it uses following HTTP method:
```DELETE /lists/${listId}/members/${hash}```
see [here](http://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/#delete-delete_lists_list_id_members_subscriber_hash)
for more information