How to trigger webhook entry.update event?

System Information
  • Strapi Version: 4.12.6
  • Operating System: linux
  • Database: postgresql
  • Node Version: 16
  • NPM Version: 8.9.1
  • Yarn Version:

Hello, I have a question regarding webhooks. I have an article type, and for it, I need to handle entry .published, entry.updated and entry.unpublished events externally. I do have Draft And Publish enabled and webhook configuration set for entry published, updated and unpublished events.

When I click the publish button, the webhook receives an entry.published event.
When I click the unpublish button, the webhook receives an entry.unpublished event.

How can I trigger an entry.updated event? I thought that after the entry was published, if I make any changes in the entry and click Save button, Strapi would send an event to the webhook, but it somehow does not. Is there anything extra that needs to be done to send entry.updated event?

The documentation isn’t very thorough about it.