Create a New WebHook Template
The Create New WebHook API returns a blank WebHookInfoItem pre-filled with a fresh hookId and the server's default delivery settings. Use it as the starting point when your system does not already have a hookId to work with.
Create or Update a WebHook
The Save WebHook API registers a WebHook, or replaces the configuration of one that already exists. The same PUT serves both cases: if the hookId in the URL is already known to the server the stored record is replaced, and if it is not, a new record is created.
Get All WebHooks
The Get All WebHooks API returns every WebHook registration visible to the calling account. Use it to reconcile your own records against what Events Bridge actually has stored β for example to find hooks left behind by an integration that generated a fresh hookId on each run.
Get a WebHook by ID
The Get WebHook by ID API returns a single WebHook registration. Use it when your system has already persisted a hookId and wants to read back the current configuration without pulling the full list.
Send a Test Event
The Test WebHook API posts one synthetic detection to a WebHook's configured postbackAddress and reports what your receiver answered. It is the fastest way to prove that a registration is correct β URL reachable, TLS accepted, credentials valid, payload parsed β without waiting for a real face or plate to be detected.
Delete a WebHook
The Delete WebHook API removes a WebHook registration. Once deleted, no further detection events are posted to its address, and the delivery statistics collected for that hook are discarded along with it.