Kadoa allows you to monitor websites for data changes and receive notifications when updates occur.
When creating or editing workflow, click “Repeat” to set up regular updates.
Choose an update frequency.
Enterprise customers can request real-time monitoring.
To set up notifications:
click “Get notified when data changes”.
In the monitoring settings, select the fields you want to track for changes.
Select about what type of changes you want to be notified. We support 3 types of changes:
All changes: Receive notifications for all changes (additions, modifications, and removals).
Only added data: Receive notifications only for new data. An object is considered new when it has less than 50% field matches with any existing object.
Only removed data: Receive notifications only for removed data.
Optional: You can add conditions to the monitoring. For example, you can only receive notifications if the data has changed in a specific field and contains a specific value.
Choose your preferred notification channel. Self-service users can receive email notifications. Enterprise customers have access to additional integration options.
// Original Data{ "title": "Senior Software Engineer", "company": "TechCorp", "location": "Remote", "salary": "$150k-$180k"}// Updated Data{ "title": "Senior Software Engineer", // Same "company": "TechCorp", // Same "location": "Remote", // Same "salary": "$160k-$190k" // Changed}
With “Only added data” selected: No notification (>50% fields match).
With “All changes” selected: Notification about salary field change.Product Inventory:
Copy
// Original Data{ "name": "Laptop Pro", "brand": "TechBrand", "price": "$999", "specs": "i7, 16GB RAM"}// Updated Data{ "name": "Laptop Pro 2024", // Different "brand": "NewTechBrand", // Different "price": "$1299", // Different "specs": "M2, 32GB RAM" // Different}
With “Only added data” selected: Notification (all fields different).
With “All changes” selected: Notification about new product.