With traditional API communication, an application must repeatedly ask (poll) if new information is available. This consumes a lot of server time and bandwidth. Webhooks, on the contrary, work on the push principle: information is sent automatically as soon as something relevant happens.
Registration: First, you configure a webhook in the sending application (for example, Shopify, WooCommerce or Magento). You specify which events you want to track and which URL the messages should be sent to. This URL is called the hook URL. In the case of Server-Side Tagging, you send it to your server container URL.
Trigger: When an event occurs in the sending application that you have set as a trigger (such as a new order), the webhook is activated.
Send: The application automatically sends an HTTP POST request to your hook URL. This message contains all relevant information about the event, usually in JSON or XML format. In the case of Server-Side Tagging, the webhook payload is in the form of a JSON file filled with eCommerce, marketing and user info.
Receipt and processing: Your server receives the webhook message and processes the data according to the programmed logic. This could include updating a database, sending an e-mail or updating statistics. In the case of Server-Side Tagging, this is processing the received data into a purchase event that can be forwarded to Google Analytics 4 or Meta Ads, among others.
Confirmation: Your server returns an HTTP status code (such as 200 OK) to indicate that the message was successfully received. If the sending application does not receive a positive confirmation, it may try to resend the message.
For a properly working webhook implementation, it is important that your hook URL is always reachable. You also need to consider security, such as verifying the authenticity of incoming messages with a secret key or signature. Webhooks offer a powerful way for applications to communicate without having to constantly check for new information. Due to the push mechanism, they are efficient and provide real-time data exchange between different systems.
For filling your webhook with the right data, you as a webshop owner hardly have to do anything. When you use a WooCommerce, Shopify or Magento webshop, this is completely taken care of via AdPage's plugins. These plugins ensure that all relevant order data is automatically collected and forwarded to the webhook destination. After the one-time installation and configuration of the plugin, the system works fully automatically and you receive all the necessary conversion data in real time.
If you are working with a custom platform, you need to implement the webhook yourself. This requires development work where you write code that automatically collects all relevant data at order processing and sends it via HTTP POST to the appropriate endpoint. Usually this is done in the backend of your ordering process. To do this, use the documentation to set up custom webhooks that we provide.
Activating webhooks for your shop is done fully automatically via the AdPage plugins. You only need to install the right plugin for your platform (Shopify, WooCommerce or Magento) and configure it according to the instructions provided. After installation, the plugin takes care of all the necessary webhook settings without you needing any technical knowledge. The plugin ensures that all relevant order data is automatically forwarded to the correct destinations.
Creating a webhook for your webshop is very easy via the AdPage plugins. For standard e-commerce platforms such as Shopify, WooCommerce and Magento, simply install the corresponding plugin and follow the setup wizard. If you have a custom shop or need specific customizations, AdPage also offers options. In that case, you need to have custom webhooks developed that collect and forward the appropriate data. For detailed instructions on setting up custom dataLayers and webhooks, please see our help desk article. This article contains step-by-step guides for different platforms and situations, including sample code and configuration settings.
Webhooks are not always necessary, especially when your workflow stays within one platform and you don't have problems measuring conversions on thank-you pages. For eCommerce, webhooks are valuable because customers are often redirected to external payment applications, which may prevent them from reaching the thank-you page correctly or close prematurely.
AdPage also provides options to use webhooks when filling out the Wordpress forms Gravity Forms or Contactform7. Here, however, the use of webhooks is often unnecessary. Visitors who fill out these forms usually stay within your website and almost always reach the thank you page. The chances of missing conversions are minimal because there is no external redirection. If you can reliably measure conversions through the thank-you page and you don't experience problems with data loss, webhooks offer little added value and represent unnecessary complexity.