Skip to main content
Version: v1

List Event Types

Returns the list of all available event types. Some documented event types may not be returned if your Fullstory plan does not support them. If a returned event definition indicates that it has subcategories, that means that you must supply a subcategory when creating an endpoint that receives that type of event. You can get the list of available subcategories via the List Event Subcategories API.

Responses
200

A successful response.


{
"eventDefs": [
{
"eventName": "note.created",
"displayName": "Note Created",
"hasSubcategories": false
},
{
"eventName": "segment.trend.alert",
"displayName": "Segment Alert",
"hasSubcategories": true
},
{
"eventName": "nativemobile.event.crash",
"displayName": "Native Mobile Crash",
"hasSubcategories": false
},
{
"eventName": "recording.event.custom",
"displayName": "Custom Event",
"hasSubcategories": true
}
]
}
Loading...