Skip to content

TraverseOSS/pabbly-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Pabbly Client

Client for use with https://www.pabbly.com/

Latest master build: Build Status

Usage

Create the client via the builder. The only required fields are apiKey and secretKey:

	final PabblyClient pabblyClient = new PabblyClient.Builder()
				.apiKey("API_KEY").secretKey("SECRET_KEY").build();

Supported Operations

Create new Plan for a product

	pabblyClient.createPlan(plan);

Verify Hosted Page

	final String hostedPage = "5a4dc3548f40f61da0091c1c";
	pabblyClient.verifHostedPage(hostedPage);

Get Subscription

	final String subscriptionId = "5a4dc33d8f40f61da0091c1b"
	pabblyClient.getSubscription(subscriptionId);