Incoming Webhooks: Change “Key not found” message

Add the following code snippet towards the end of your child themes functions.php

add_filter(
   'automator_pro_webhook_field_key_not_found',
   function ( $message, $field, $parsed_fields, $fields, $data ) {
      return '';
   },
   99,
   5
);