Events and Webhooks
Build integrations on fylr — pull the event stream, receive a real-time WebSocket push, get an outbound workflow webhook, or run a synchronous plugin callback. When to use each.
Way
Direction
Delivery
Use it when
Pull: poll the event stream
# first call — from the start
curl -H "Authorization: Bearer $TOKEN" \
"https://fylr.example.com/api/v1/event/poll/0?limit=100"
# next call — from the last id you saw
curl -H "Authorization: Bearer $TOKEN" \
"https://fylr.example.com/api/v1/event/poll/4711?limit=100"Push: the WebSocket stream
Push: outbound workflow webhooks
Synchronous plugin callbacks
See also
Last updated