Trigger Manual and API

Start this workflow by hand, via API, or with a webhook URL. Optionally define input fields for structured data.

At a Glance

FieldValue
Trigger IDmanual
CategoryManual and API
Tagsmanual, on-demand, user-initiated, webhook, http, api

Trigger Configuration

FieldTypeRequiredDescription
inputSchemaobjectNoDefine the fields that must be provided when triggering this workflow. Leave empty to accept any data or no data.

Trigger Result

FieldTypeRequiredDescription
triggeredAtstringYesTimestamp when the trigger was executed (UTC, RFC3339 format)
bodyobjectNoInput data provided at trigger time (from UI form, API payload, or webhook body)

Workflow Root Example

json
{ "nodes": { "root": { "type": "manual", "payload": { "inputSchema": {} }, "children": [ "log_event" ] }, "log_event": { "type": "log", "payload": { "message": "Triggered at {{$trigger.triggeredAt}}" }, "children": [] } }}

Downstream nodes can use {{$trigger.triggeredAt}} and any result fields listed above. Event triggers usually expose the raw source payload under a field such as event, body, trade, or raw.

Ask a question... ⌘I