Output Node
Output Node plays the role of outputting or sending the final result of the workflow. You can deliver results to various platforms.
๐ Output Node List
| Node | Platform | Purpose | Auth |
|---|---|---|---|
| INBLOG | INBLOG | Auto Blog Posting | API Key |
| Slack | Slack | Team Message Send | Bot Token |
| Telegram | Telegram | Message/Notif Send | Bot Token |
| Discord | Discord | Community Message | Bot Token |
| Http Response | HTTP API | Return API Response | None |
| Chatbot Response | Chatbot | Return Chatbot Answer | None |
INBLOG
Writes a post to INBLOG
โจ Key Features
- โ๏ธ Automated Blog Posting
- ๐ Scheduled Publishing Support
- ๐จ HTML Content Support
- ๐ Custom URL (slug) Setting
๐ง Required Settings
| Setting | Description | Example |
|---|---|---|
| API Key* | INBLOG API Key | ib_... |
| slug* | Post URL Path | my-first-post |
| title* | Post Title | First Post made by AI |
| content_html* | Post Content (HTML) | {{result}} |
| published* | Immediate Publish | true / false |
๐ก Usage Example
Auto Blog Posting
[Schedule] โ [News API] โ [ChatGPT] โ [INBLOG]
- Collect latest news every morning
- AI writes blog post
- Automatically publish to INBLOG
INBLOG Node Config:
slug: news-{{DATE}}
title: Today's AI News
content_html: {{result}}
published: true
Slack
Sends a message to Slack
โจ Key Features
- ๐ฌ Send message to team channel
- ๐ Real-time notification
- ๐จ Rich formatting support
๐ง Required Settings
| Setting | Description | Example |
|---|---|---|
| bot_token* | Slack Bot Token | xoxb-... |
| channel_id* | Channel ID | C01234ABCDE |
| text* | Message to send | {{result}} |
๐ Prerequisites
Create Slack App
- Go to Slack API and create App
- OAuth & Permissions: Grant
chat:write,channels:read - Issue Bot Token
Check Channel ID
- Right click Slack Channel โ Channel Details โ Copy ID
๐ก Usage Example
Daily Report Sending
[Schedule] โ [Fetch Data] โ [ChatGPT] โ [Slack]
Telegram
Sends a message to Telegram
โจ Key Features
- ๐ฑ Send Private Message
- ๐ฅ Group/Channel Message Support
- ๐จ Markdown Format Support
๐ง Required Settings
| Setting | Description | Example |
|---|---|---|
| api_key* | Telegram Bot Token | 123456:ABC-DEF... |
| chat_id* | Chat ID (Private/Group/Channel) | 123456789 or @channel |
| text* | Message to send | {{result}} |
๐ Prerequisites
Create Telegram Bot
/newbotto @BotFather and get Token
Check Chat ID
- Send message to bot and check with
getUpdatesAPI - Or
@channelnamefor public channels
- Send message to bot and check with
๐ก Usage Example
Stock Price Alert
[Schedule] โ [Stock API] โ [Telegram]
Sending Reply:
chat_id: {{results[0].message.chat_id}}
text: {{result}}
Discord
Sends a message to Discord
โจ Key Features
- ๐ฎ Community Notification
- ๐ค Bot Message
๐ง Required Settings
| Setting | Description | Example |
|---|---|---|
| bot_token* | Discord Bot Token | MTk4... |
| channel_id* | Channel ID | 987654321 |
| content* | Message to send | {{result}} |
๐ Prerequisites
Create Discord Application
- Create Bot in Developer Portal
- Invite to server with OAuth2 URL Generator (bot scope)
Check Channel ID
- Turn on Discord Developer Mode โ Right click Channel โ Copy ID
Http Response
Returns an HTTP Response (For API Endpoint)
โจ Key Features
- ๐ Returns workflow execution result (last node result) as API response
- ๐ฑ External System Integration
๐ง Configuration
No extra configuration needed. It sends the result of the immediate previous node in the response.
๐ Response Format
The format returned when calling API is as follows:
{
"success": true,
"data": "Result text of the last node",
"timestamp": "..."
}
Chatbot Response
Returns response for Web Chatbot Widget
โจ Key Features
- ๐ฌ Displays text in the chatbot window integrated into the website.
- โก Real-time conversation flow implementation
๐ง Configuration
No separate configuration required. The text generated in the previous node is automatically used as the chatbot answer.
๐ก Usage Example
Website Customer Service
[Text Input (For Chatbot)] โ [VectorDB] โ [ChatGPT] โ [Chatbot Response]
Receives user question from the chatbot widget embedded in the website, and shows back the AI's answer.
๐ Which Output to Choose?
| Situation | Recommended Output | Reason |
|---|---|---|
| Auto Blog Post | INBLOG | Direct CMS Integration |
| Team Alert | Slack | Business Messenger |
| Private/Channel Alert | Telegram | Easy Setup |
| Gaming Community | Discord | Gamer Friendly |
| API Service | Http Response | Standard REST API |
| Web Chatbot | Chatbot Response | Real-time Conversation |
๐ Using Multiple Outputs
You can use multiple Output nodes in one workflow.
[AI Generation] โ [Slack]
โ [Telegram]
Sends the same result to multiple platforms simultaneously.