> ## Documentation Index
> Fetch the complete documentation index at: https://spacesail.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Slack Events

> Process incoming Slack events



## OpenAPI

````yaml post /slack/events
openapi: 3.1.0
info:
  title: Agno AgentOS
  description: An agent operating system.
  version: 1.0.0
servers: []
security: []
paths:
  /slack/events:
    post:
      tags:
        - Slack
      summary: Slack Events
      description: Process incoming Slack events
      operationId: slack_events_agent
      responses:
        '200':
          description: Event processed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackEventResponse'
        '400':
          description: Missing Slack headers
        '403':
          description: Invalid Slack signature
components:
  schemas:
    SlackEventResponse:
      properties:
        status:
          type: string
          title: Status
          description: Processing status
          default: ok
      type: object
      title: SlackEventResponse
      description: Response model for Slack event processing

````