v2
latestOpenAPI 3.1.02026-07-312303692.4 MBEvent Type
Get Event Type
Get an event type.
get/api/v1/event-type/{event_type_name}
Path parameters
event_type_namestring required
The event type's name
Example:user.signup
The event type's name
Response
Example response
{
"name": "user.signup",
"description": "A user has signed up",
"schemas": {
"1": {
"title": "Invoice Paid Event",
"description": "An invoice was paid by a user",
"type": "object",
"properties": {
"invoiceId": {
"description": "The invoice id",
"type": "string"
},
"userId": {
"description": "The user id",
"type": "string"
}
},
"required": [
"invoiceId",
"userId"
]
}
},
"groupName": "user",
"featureFlags": [
"cool-new-feature"
]
}