GoaTech canonical event catalog
event_catalog_canonicalRetrieve the canonical event catalog to standardize event naming across your project, combining pre-built GoaTech events with your custom events. Call before writing track calls to avoid duplicates.
Instructions
Returns the events GoaTech understands out of the box (so they appear in pre-built dashboards / templates without manual rework) merged with the project's own registered custom events. Call this BEFORE writing any new track() / client.track() / useTrack() callsite — if a canonical event covers what you're about to emit, use the canonical name (e.g. signup_completed, not UserSignedUp or signup_done). Customers also benefit: their custom events show up under customer_events so you can match the convention they've already established. Filter to one category with category to avoid context bloat.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional filter. system events are SDK-auto-emitted (don't call track for these); auth/funnel/commerce/engagement are customer-emit. | |
| include_customer_events | No | Include the project's registered EventSchema rows (set false if you only want the GoaTech canonical list). |