An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/touwolf/mailchimp-client-api-v3.svg?branch=master)](https://travis-ci.org/touwolf/mailchimp-client-api-v3)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.touwolf/touwolf-mailchimp-v3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.touwolf/touwolf-mailchimp-v3/bridje-parent)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1c03ea10342e49abba9eee59251440de)](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.