HTTP API
Best HTTP Rules engine built-in with Thingsup IoT Platform to create HTTP APIs. Validate and Transform your IoT data on the fly with serverless service to build your IoT solutions.
URL
https://api.thingsup.io/data/{Your-AccountID}/{Rule-ID}Authorization - Auth key
Bearer<space>{Your-Auth-Key}Data Validation/Transform
// This code checks if payload is JSON and contains Location data
if(typeof payload === 'object')
{
if(payload.Location == undefined)
{
payload = null;
}
else
{
payload["time"] = Date.now(); // Transform payload
}
}
else
{
payload = null;
}Action ID

Last updated
Was this helpful?