Staying in sync
Last updated 2 September 2026.
You read on render, so what you show is never more than one page view behind. This page is about the edges: being told sooner, the older block that is still on the wire, and what to do when the link ends.
Being told sooner
Register a webhook URL and Trivela POSTs to it when a value this player is shown may have moved:
POST <your webhook URL>
Authorization: Bearer wh_yourservice_…
{ "subject": "u_8f31c2" }The subject alone — never the field, never a value. On receipt, answer 202 at once, then make your ordinary link/status call and run the same apply code your render path runs. Trivela times out at two seconds and does not retry; a missed ping costs nothing because the change still arrives on the next render.
- Check the bearer in constant time, and fail closed if your secret is not configured.
- Answer 202 for everything past the bearer check — linked, not linked, unknown subject. A 404 would let anyone with the secret ask whether an id is one of your users.
- Never end a link from a ping. Send no
valuesand nosubjectLabelfrom it either; a ping is not the player being present.
Deploy the receiver before asking us to register the URL. The full contract is on the webhook reference page.
When the link ends
Whether you ended it with link/unlink or the player did from their Trivela account page — which you learn on your next status call as { "linked": false } — clear every column you filled from Trivela. A value left behind after the link is a stranger’s name on a public page. Clear the overlay columns and the cached link together, in one statement if you can.