Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elasticio/mailchimp-component
Mailchimp component for elastic.io platform
https://github.com/elasticio/mailchimp-component
eio-component ipaas
Last synced: 3 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 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T22:37:48.000Z (over 1 year ago)
- Last Synced: 2024-04-09T21:02:11.045Z (7 months ago)
- Topics: eio-component, ipaas
- Language: JavaScript
- Size: 610 KB
- Stars: 0
- Watchers: 12
- 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