v54

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-06178189573.7 KB
Functions

List function event types

List the event types a function trigger can subscribe to. Includes the special type cron, which fires on a schedule (see POST /v1/functions/{functionId}/triggers) rather than on a messaging event.

get/v1/functions/event-types

Response

Supported event types.

eventsstring[] required

Example response

{
  "events": [
    "message.inbound",
    "message.delivered",
    "cron"
  ]
}
All 178 operations