Webhooks are available to workspace owners and members. Viewers do not see this page. If you see “Webhooks are not available for your account,” ask a workspace owner to set them up.
Add an endpoint
- Go to Settings → Webhooks.
- Add a new endpoint.
- Paste the URL that should receive the events. It must be a publicly reachable HTTPS URL — a service running only on your laptop will not receive anything unless you expose it with a tunnel.
- Choose which events to subscribe to. Subscribe only to what you actually handle; every extra event is a request your endpoint has to answer.
- Save the endpoint.
Events you can subscribe to
For the exact payload each event sends, see the webhooks reference in the developer documentation.
Test and debug
The webhooks page is a full management portal, not just a list. From it you can:- Send a test event to confirm your endpoint is reachable before you rely on it.
- See delivery attempts for every message, including the response your endpoint returned.
- Replay a failed message once you have fixed the problem on your side, instead of waiting for the event to happen again.
Verify the messages you receive
Each message is signed, so you can confirm it genuinely came from Tella and was not forged by someone who guessed your URL. Verify the signature before acting on a payload. The signing secret and verification steps are in the webhooks reference.Related
- Public API and webhooks — what you can build with the API.
- Create and manage API keys — authenticating your own calls back to Tella.