Home > cloudbees-api-client

cloudbees-api-client

Cloudbees-api-client is a project mainly written in ..., based on the Apache-2.0 license.

The official RUN@cloud api client

This is the cloudbees api client (you can think of this as a reference implementation).

Build the Jar

mvn package

Using the code

import com.cloudbees.api.BeesClient;

class ApiCall { public static void main(String[] args) { String apiUrl = "https://api.cloudbees.com/api"; String apiKey = ""; //from CloudBees account String secret = ""; //from CloudBees account BeesClient client = new BeesClient(apiUrl, apiKey, secret, "xml", "1.0")

//list your applications client.applicationList(); } }

Previous:php-sdk