Skip to content
This repository has been archived by the owner on May 22, 2020. It is now read-only.

ClouDesire/partner-center-rest-api-client

Repository files navigation

Partner Center REST API Java8/Kotlin Client

DEPRECATED please switch to the official client

CircleCI Download

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

Install on Maven

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>

Install on Gradle

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()
}

Examples

For usage examples please look into tests folder.

Development

Release a new version

./gradlew release -x test