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

# Slack Events Webhook

> Slack Events API endpoint. Handles url_verification, app_uninstalled, tokens_revoked, and app_home_opened events. No auth; verified via Slack signature.



## OpenAPI

````yaml https://hub.griff.services/documentation/json post /integrations/hooks/
openapi: 3.1.0
info:
  title: Griffin Hub API
  description: API for managing and running test monitors
  version: 1.0.0
servers:
  - url: https://hub.griff.services
    description: Local development server
  - url: http://localhost:3000
    description: Local development server
security:
  - bearerAuth: []
tags:
  - name: monitors
    description: Test monitor management endpoints
  - name: runs
    description: Test run management endpoints
  - name: metrics
    description: Metrics and health summary endpoints
paths:
  /integrations/hooks/:
    post:
      tags:
        - integrations
        - hooks
      summary: Slack Events Webhook
      description: >-
        Slack Events API endpoint. Handles url_verification, app_uninstalled,
        tokens_revoked, and app_home_opened events. No auth; verified via Slack
        signature.
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````