https://api.thygon.com
Publish events
Publish a new event
POST /events
Append a new, immutable event record to the organizational ledger. All workflows matching this event type will be triggered asynchronously.
Request body:
Query events
Query event log
GET /events
Query and filter events recorded in the ledger.
Query parameters:
type(string, optional): Filter by exact event type handle.limit(integer, optional): Maximum number of events to return. Default is50.cursor(string, optional): Token used to fetch the next page of results.
Get a single event
GET /events/{id}
Retrieve the full details and payload of a specific event using its unique ID.
Path parameters:
id(string, required): The unique event ID.