If you need to create a webhook on a MySQL table, having a field that marks the last modification date of any record, can be a great start
ALTER TABLE
my_table
ADD COLUMN modified DATETIME ON UPDATE CURRENT_TIMESTAMP,
ADD INDEX IX_modified (modified);
Keep Performing,
Moshe Kaplan