https://github.com/touwolf/mailchimp-client-api-v3
mailchimp client api v3 wrapper
https://github.com/touwolf/mailchimp-client-api-v3
Last synced: 6 months ago
JSON representation
mailchimp client api v3 wrapper
- Host: GitHub
- URL: https://github.com/touwolf/mailchimp-client-api-v3
- Owner: touwolf
- License: apache-2.0
- Created: 2016-05-30T15:39:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-21T15:33:52.000Z (over 9 years ago)
- Last Synced: 2025-06-11T04:47:34.865Z (7 months ago)
- Language: Java
- Size: 281 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/touwolf/mailchimp-client-api-v3)
[](https://maven-badges.herokuapp.com/maven-central/com.touwolf/touwolf-mailchimp-v3/bridje-parent)
[](https://www.codacy.com/app/acksecurity/mailchimp-client-api-v3?utm_source=github.com&utm_medium=referral&utm_content=touwolf/mailchimp-client-api-v3&utm_campaign=Badge_Grade)
# Mailchimp Client API V3
Mailchimp Client API V3 wrapper for **Java**
Implemented API
==============
API Root
Batch Operations
Campaign Folders
Campaigns
Content
Feedback
Send Checklist
Lists
Abuse Reports
Activity
Clients
Growth History
Interest Categories
Members
Merge Fields
Segments
Webhooks
Usage
=====
* Add dependency
*Maven*
```
com.touwolf
touwolf-mailchimp-v3
0.0.7
```
*Gradle*
```
compile 'com.touwolf:touwolf-mailchimp-v3:0.0.7'
```
* Code
```java
MailchimpClient mailchimpClient = new MailchimpClientImpl(MY_USER, MY_API_KEY);
Lists lists = mailchimpClient.lists();
...
// returns all the list on mailchimp
MailchimpResponse response = lists.read(new ListsReadRequest());
...
```
Dependencies
============
Bridje Core IoC library https://github.com/bridje/bridje-framework/wiki/Bridje-IoC
org.bridje
bridje-ioc
0.2.2
HTTP & HTTP/2 client for Android and Java applications https://github.com/square/okhttp/wiki
com.squareup.okhttp3
okhttp
3.3.1
Java library that can be used to convert Java Objects into their JSON representation https://github.com/google/gson
com.google.code.gson
gson
2.4
--
The project is licensed under the MIT License:
The MIT License (MIT)
Copyright (c) 2016 Touwolf Technologies
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.