Paid Feature - The enqueue node is available on the Hobby and Pro plans. View pricing
enqueue node sends messages to queue handlers for asynchronous processing. This enables non-blocking workflows where your API can respond immediately while background work happens in a separate flow.
Configuration
Config Fields
How It Works
- The enqueue node resolves the
handlerto find the target flow - Target flow must have a queue trigger
- Message is sent to the queue asynchronously
- Node returns immediately (non-blocking)
- The queue handler receives and processes the message in the background
Output
Examples
Basic Enqueue
With Dynamic Data
Using Handler ID
You can reference handlers by either slug or UUID:Complete Example: Accept and Process
A common pattern is to accept a request immediately and process it in the background. HTTP Flow (accepts order):Checking Enqueue Result
You can check if the message was queued successfully:Use Cases
Webhook Processing
Accept webhooks immediately and process them reliably in the background:Email Notifications
Queue emails without blocking the API response:Batch Processing
Queue items for batch processing:Error Handling
If the handler flow doesn’t exist or isn’t a queue handler, the enqueue node will fail:Plan Availability
The enqueue node is available on Hobby and Pro plans.Related
- Queue Trigger - Create queue handlers
- Loop Node - Queue multiple items
- Try Node - Handle enqueue failures
- Response Node - Return 202 Accepted