Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bizzabo/mailchimp_java_client
Java client for Mailchimp V3
https://github.com/bizzabo/mailchimp_java_client
backend rnd
Last synced: 12 days ago
JSON representation
Java client for Mailchimp V3
- Host: GitHub
- URL: https://github.com/bizzabo/mailchimp_java_client
- Owner: bizzabo
- License: apache-2.0
- Created: 2016-03-03T13:50:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T08:46:33.000Z (7 months ago)
- Last Synced: 2024-04-18T10:29:25.921Z (7 months ago)
- Topics: backend, rnd
- Language: Java
- Homepage:
- Size: 30.3 KB
- Stars: 4
- Watchers: 39
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mailchimp_java_client
Java client for Mailchimp V3
(WIP - partial apis for lists and batch operations)# Usage:
setup the main Mailchimp client using endpoint url and the api token:
```java
Mailchimp mailchimp = new Mailchimp(instanceUrl, token);
```
execute calls to a resource: (example of lists resource)
```java
Map params = new HashMap<>();
params.put("count", 1000);
mailchimp.lists().get(params);
```
get Interests example:
```java
Map params = new HashMap<>();
params.put("count", 1000);
mailchimp.lists().getInterests(listId, categoryId,params);
```