ProcessFunction Action
Process input data using Thingsup IoT Platform.
Function
//Example 1
response = payload;
//Reply with same payload
or
if(payload.temperature > 40){
response["Status"] = "High";
}
else{
response["Status"] = "Low";
}
Last updated
Was this helpful?