List Event Types
GET {{baseUrl}}/api/v1/event-type?limit=<uint64>&iterator=<string>&order=<string>&include_archived=false&with_content=false
Return the list of event types.
Request Params
| Key | Datatype | Required | Description |
| limit
| string | | Limit the number of returned items |
| iterator
| string | | The iterator returned from a prior invocation |
| order
| string | | The sorting order of the returned items |
| include_archived
| boolean | | When true
archived (deleted but not expunged) items are included in the response |
| with_content
| boolean | | When true
the full item (including the schema) is included in the response |
HEADERS
| Key | Datatype | Required | Description |
| Accept
| string | | |
RESPONSES
status: OK
{"data":[{"createdAt":"2018-04-15T14:37:35.698Z","description":"A user has signed up","name":"user.signup","updatedAt":"1951-12-02T16:31:18.379Z","archived":false,"schemas":{"1":{"description":"An invoice was paid by a user","properties":{"invoiceId":{"description":"The invoice id","type":"string"},"userId":{"description":"The user id","type":"string"}},"required":["invoiceId","userId"],"title":"Invoice Paid Event","type":"object"}},"featureFlag":"cool-new-feature"},{"createdAt":"1945-02-17T06:10:36.593Z","description":"A user has signed up","name":"user.signup","updatedAt":"2022-04-04T14:28:06.313Z","archived":false,"schemas":{"1":{"description":"An invoice was paid by a user","properties":{"invoiceId":{"description":"The invoice id","type":"string"},"userId":{"description":"The user id","type":"string"}},"required":["invoiceId","userId"],"title":"Invoice Paid Event","type":"object"}},"featureFlag":"cool-new-feature"}],"done":true,"iterator":"iterator","prevIterator":"-iterator"}