List analytics event properties
Returns the property keys the app has sent with a given event, so you know what you can filter, aggregate, and group by.
Properties are whatever the app passes to base44.analytics.track(), so they differ per event. Get the event names first with List analytics event names.
To use a key from the response, prefix it with properties.. For example, pass properties.plan as a filter field in Query analytics events, or as a metric field in Aggregate analytics events by field.
Keys come from the events retained over the last 60 days. The response returns at most 100 keys and does not say whether it truncated, so an event that carries more than 100 distinct keys reports only some of them.
Authorizations
Personal API key.
Path Parameters
Name of the event whose property keys to return, exactly as the app tracked it. An event the app never tracked returns an empty list.
ID of the app whose analytics to read.
Response
The event's property keys.
Response for event property keys discovery.
Name of the event the property keys belong to.
"checkout_completed"
Property keys the app has sent with this event. Prefix a key with properties. to filter, aggregate, or group by it, which works for keys made up of letters, digits, and underscores.