DEPRECATED please switch to the official client
This is a Kotlin implementation (usable also on Java 8 projects) of the Partner Center REST API, based on the great retrofit HTTP library.
Currently managed resources are:
- Customer
- Order
- Subscription
Add the package to your Maven project:
<dependency>
<groupId>com.cloudesire</groupId>
<artifactId>partner-center-rest-api-client</artifactId>
<version>1.0.0</version>
</dependency>
Make sure that jcenter is enabled
<repositories>
<repository>
<id>jcenter</id>
<url>https://jcenter.bintray.com/</url>
</repository>
</repositories>
Add dependency to your build.gradle
compile 'com.cloudesire:partner-center-rest-api-client:1.0.0'
Make sure that jcenter is enabled
repositories {
jcenter()
}
For usage examples please look into tests folder.
./gradlew release -x test