The Sky Cloud API gives RESTful access to data in personal clouds. Sky Cloud defines a meta API since the actual specific features of the API depend on the KRL module that is references in the Sky Cloud URL. In essence, the Sky Cloud API is extensible by any KRL developer. 

The Sky Cloud API is usually used in tandem with the Sky Event API

URL Format

The format of the Sky Cloud API is as follows:

The schema can be either http or https depending on the configuration of the server hosting the picos. 

The domain name is the domain name of the pico-engine hosting the picos processing the events.

The path is formatted as follows:

  /sky/cloud/<eci>/<rid>/<function>?name0=value0&...&nameN=valueN

Where

API Action

Performing an HTTP GET request on a Sky Cloud URL formatted as previously shown will return a string with the JSON result of calling <function> in the module named <rid> with the given parameters. The content type of the return is application/json.

Preparing a Module for Use with Sky Cloud

Any module can be used with the Sky Cloud API. In order to use a module with Sky Cloud, the shares pragma in the meta section of the ruleset must list the names of the functions that are shared (and thus callable but Sky Cloud). 

meta {
  name "thermostat module"
  shares mode, get_temperature
}

Any function (and only functions) in the shares list of the module can be called using Sky Cloud. 

Note that you can only run functions. So if you want to return a constant, you can wrap it in a parameterless function. 

The names of the parameters to the function will be the names that are used in the GET request query string, so picking good names for your function parameters will ensure that the API represented by your module will be more usable. 


Example

Suppose that you had defined the following function:

ruleset a16x55 {
  meta {
    name "thermostat module"
    shares get_mode, get_temperature
  }
  global {
    get_mode = function() {
      ...
    }
    get_temperature = function(room) {
      ...
    }
}

You could call the get_temperature() function, supplying bedroom as the parameter with the following request:

  GET /sky/cloud/a16x55/get_temperature?room=bedroom

You would get back a string with a JSON response. The contents of the response depend on the specific operation of the get_temperature() function.