Subscribers Tab
The Subscribers tab lists the endpoints that receive the requests. Every subscriber of a configuration receives the same payload, built from the Events and Schema tab.
Add one URL per subscriber. A failing subscriber does not prevent the others from receiving their request.
Custom Headers
Custom headers are sent with every request to every subscriber of this configuration. Each header is a key and a value. Use them when an endpoint expects an authorization header or a similar fixed header.
To send different headers per subscriber, implement a custom processor and override
getAdditionalOptionsForSubscriber(). See Custom Processors.
Testing Connectivity
The Test button next to the input field sends a bodyless HTTP POST request to every subscriber. It checks that
Pimcore can reach the endpoints; it does not send a webhook payload, and the status code the endpoint returns is
ignored.
The result appears as a message: Test succeeded when every request completed, otherwise Test failed followed by the
transport errors of the subscribers that could not be reached.
The result can take a while to appear, because the test waits for the connection timeout of every unreachable subscriber.
The endpoints receive a real POST request. Point the test at an endpoint that tolerates an empty request body.

