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.
A successful response.
Schema
- Array [
- ]
event_defs object[] optional
The list of event type definitions, up to the requested limit.
The name of an event.
A user-friendly display name for this kind of event.
True if this kind of event has subcategories.
{
"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
}
]
}
Returned when invalid input has been provided. Fix the issue and retry.
Schema
Long form description of what went wrong
A short snake-cased value that is safe to handle programmatically
{
"message": "uid is required",
"code": "required_field"
}
Returned when access to the resource is unauthorized.
Schema
Long form description of what went wrong
A short snake-cased value that is safe to handle programmatically
{
"message": "access is unauthorized",
"code": "unauthorized"
}
Returned when access is not allowed due to insufficient permissions.
Schema
Long form description of what went wrong
A short snake-cased value that is safe to handle programmatically
{
"message": "insufficient permissions",
"code": "forbidden"
}
Returned when the resource does not exist.
Schema
Long form description of what went wrong
A short snake-cased value that is safe to handle programmatically
{
"message": "Requested resource does not exist",
"code": "resource_not_found"
}
Returned when the client has exceeded the rate limit for this endpoint.
Schema
Long form description of what went wrong
A short snake-cased value that is safe to handle programmatically
{
"message": "Too many requests. Client has exceeded the rate limit for this endpoint.",
"code": "too_many_requests"
}
Returned when a server error is encountered
Schema
Long form description of what went wrong
A short snake-cased value that is safe to handle programmatically
{
"message": "Server error was encountered",
"code": "server_error"
}