Creating an UbiFunction

To create an UbiFunction:

  1. In your Ubidots account, go to the "Devices" tab and select "Functions".

2. Click the blue "+" icon to create your first UbiFunction

3. Give the function a name. Keep in mind this name will later become part of the function’s URL.

The name of your function will become part of the function’s URL.

Coding your UbiFunction

UbiFunctions accept NodeJS or Python, which means you can use Javascript or Python code to extract, transform, and analyze data. Your function receives "args" as a dictionary, which you can then access in your code to perform the desired data transformation.

By default, every new UbiFunction has a sample code that uses input data (TOKEN, Device, and temperature value) to make a request to Ubidots API.

Here are the welcome examples for your reference:

const axios = require('axios');

// Main function - runs every time the function is executed.
// "args" is a dictionary containing both the URL params and the HTTP body (for POST requests).
async function main(args) {

  // Grab the token and device label from URL parameters, then erase them from the args dictionary
  var ubidots_token = args.token;
  var device_label = args.device;
  delete args['token'];
  delete args['device'];

  // Use the remaining parameters as payload
  var payload = args;

  // Log the payload to the console, for debugging purposes. You may access the function's logs using
  // the option in the above header.
  console.log(payload);

  // Send the payload to Ubidots
  var response = await ubidots_request(ubidots_token, device_label, payload);

  // Log Ubidots response to the console
  console.log(response);

  // Pass Ubidots' API response as the function's reponse
  return response;
}

// This function builds an HTTP POST request to Ubidots
async function ubidots_request(token, label, body) {
  let config = {
    method: 'post',
    url: 'https://industrial.api.ubidots.com/api/v1.6/devices/' + label,
    data: body,
    headers: {
      'Content-Type': 'application/json',
      'X-Auth-Token': token
    }
  }
  const response = await axios.request(config);
  return response.data;
}

To test the function you can click on the button Run Function. This will open up a modal requesting the input data to test with, you need only to enter a valid JSON payload. You may leave this blank if your code does not require any input.

In the case of Ubidots default sample function, enter the JSON payload below to run a test:

{
    "token":"your-token",
    "Device":"sample-function",
    "Temperature":"45"
}

After clicking on Run with this input a console window will emerge with both the output and the console of the results:

Last updated