Back to Tools

Slack Bot

Communication

Send messages, create channels, and interact with Slack workspaces. Supports threads, reactions, and file uploads.

Available Actions
sendchannelthreadupload
Input Schema
{
  "type": "object",
  "required": [
    "channel",
    "message"
  ],
  "properties": {
    "channel": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "thread_ts": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean"
    },
    "ts": {
      "type": "string"
    },
    "channel": {
      "type": "string"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/slack-bot

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/slack-bot \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "send"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.