Nota: A tradução desta entrada está atualmente em revisão de qualidade, portanto parte do conteúdo é exibida temporariamente apenas em inglês.
Este verbete ainda não foi traduzido para o seu idioma, portanto o original é exibido abaixo.
webhook
A webhook is a specialized tool for server-to-server communication, often described as a reverse API. While a standard API requires a client to poll a server for updates, a webhook pushes data automatically the moment an event is triggered, reducing latency and server overhead.
In technical documentation, the term is used to describe the specific URL endpoint that receives the payload. Because it relies on HTTP POST requests, it is a cornerstone of modern event-driven architectures and third-party integrations, such as payment notifications or CI/CD pipeline triggers.