Java library for the SaasPro

These libraries are open source and are released as such. If you have located a bug or have questions, please visit the GitHub repositories that are associated with the sample code and provide feedback there.
Latest SDK version v2 (Build date: 2020-05-10T00:57:00.867-04:00[America/New_York])
Frameworks supported

Building the API client library requires:

  1. Java 1.7+
  2. Maven or Gradle
Installation

To install the API client library to your local Maven repository, simply execute:

mvn clean install

To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:

mvn clean deploy

Refer to the OSSRH Guide for more information.

Maven users

Add this dependency to your project's POM:

      <dependency>
        <groupId>org.openapitools</groupId>
        <artifactId>openapi-java-client</artifactId>
        <version>v2</version>
        <scope>compile</scope>
      </dependency>      
Gradle users

Add this dependency to your project's build file:

    compile "org.openapitools:openapi-java-client:v2"    
Others

First, generate the JAR by executing:

    mvn clean package    

Then, manually install the following JARs:

  • target/openapi-java-client-v2.jar
  • target/lib/*.jar
Getting Started

Please follow the installation instructions and execute the following Java code:

View Example