https://github.com/bizzabo/mailchimp_java_client
Java client for Mailchimp V3
https://github.com/bizzabo/mailchimp_java_client
backend rnd
Last synced: 3 months 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 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-11T09:26:47.000Z (3 months ago)
- Last Synced: 2025-04-14T03:13:49.591Z (3 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);
```