Webhooks
The Webhooks action in Qubitro Rule Functions enables you to send data to external platforms and services automatically via HTTP requests.
Key Features
Examples
Configuration
1
2
{
"maintenance_needed": "${{maintenance_needed}}",
"timestamp": "${{timestamp}}",
"acoustic_level": "${{acoustic_level}}",
"anomaly_detected": "${{anomaly_detected}}",
"equipment_health": "${{equipment_health}}",
"pressure": "${{pressure}}",
"temperature": "${{temperature}}",
"flow_rate": "${{flow_rate}}",
"humidity": "${{humidity}}",
"random_key": "random_value"
}3
function run(){
let temperature = "${{temperature}}";
if (temperature > 30){
trigger();
}
};Common Errors & Troubleshooting
Last updated