Once you are inside the webhook portal, your first job is to create an endpoint that YunoJuno can deliver events to.
An endpoint is simply an HTTPS URL that you control.
Make sure the receiving service is ready to:
POST requests over HTTPS2xx response quickly once a message has been acceptedThat last point matters because replay and retry are normal webhook behaviors.
Endpoints area in the portal.Add Endpoint.As part of setup, decide how the receiving service should authenticate requests before you enable live delivery.
The portal supports two practical patterns:
We recommend API headers in most cases because they are easier to rotate, easier to route through proxies and load balancers, and avoid embedding credentials directly into the endpoint URL.
Use Securing Your Endpoints to choose the right pattern and implement signature verification alongside it.
After the endpoint exists, choose which events it should receive.
The portal’s Event Catalog shows:
You can also review the full catalog of currently documented events in the API reference at Webhook Events.
If you do not narrow the selection, the endpoint can receive all available events. That can be useful at the start of an integration, but production endpoints should usually be scoped to the events your system actually handles.
Use the portal’s testing tools to send example events to the endpoint before you rely on live traffic.
This is the fastest way to confirm:
2xx response