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

# Slack Bot Update Options

> Merge the provided fields into ``options.slack_bot`` on the app's Slack
IntegrationConfig; returns the refreshed status.



## OpenAPI

````yaml https://app.stainlessapi.com/api/spec/documented/hyperspell.yaml patch /admin/slack-bot/options
openapi: 3.1.0
info:
  title: Hyperspell API
  summary: >-
    Hyperspell is the memory layer for AI apps and agents. Through the API, you
    can add memories, connect data sources to index them in real-time, and
    search memories with our natural language query engine.
  termsOfService: https://hyperspell.com/blog/tos
  contact:
    name: Hyperspell
    url: https://hyperspell.com/
    email: hello@hyperspell.com
  version: 0.32.1
servers:
  - url: https://api.hyperspell.com
    description: Production
security:
  - APIKey: []
    AsUser: []
paths:
  /admin/slack-bot/options:
    patch:
      tags:
        - Slack Bot
      summary: Slack Bot Update Options
      description: |-
        Merge the provided fields into ``options.slack_bot`` on the app's Slack
        IntegrationConfig; returns the refreshed status.
      operationId: slack_bot_update_options_admin_slack_bot_options_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SlackBotOptionsPatch'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackBotStatus'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKey: []
components:
  schemas:
    SlackBotOptionsPatch:
      properties:
        digest_channel_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Digest Channel Id
        digest_cadence:
          anyOf:
            - type: string
              enum:
                - daily
                - weekly
            - type: 'null'
          title: Digest Cadence
        digest_hour_utc:
          anyOf:
            - type: integer
              maximum: 23
              minimum: 0
            - type: 'null'
          title: Digest Hour Utc
        gamification:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Gamification
        channel_personal_scope:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Channel Personal Scope
        interject_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Interject Enabled
        interject_channels:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Interject Channels
        capture_emoji:
          anyOf:
            - type: string
              maxLength: 100
              minLength: 1
              pattern: ^[a-z0-9_+-]+$
            - type: 'null'
          title: Capture Emoji
      type: object
      title: SlackBotOptionsPatch
      description: >-
        Partial ``SlackBotOptions`` update — only provided fields change.


        ``digest_channel_id=None`` explicitly clears the digest target (turns
        the

        digest off for the app), so absence and null are distinct — hence

        ``exclude_unset`` at the write site.
    SlackBotStatus:
      properties:
        configured:
          type: boolean
          title: Configured
        installed:
          type: boolean
          title: Installed
        viewer_is_owner:
          type: boolean
          title: Viewer Is Owner
          default: false
        workspace_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Workspace Name
        workspace_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Workspace Id
        installed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Installed At
        healthy:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Healthy
        options:
          additionalProperties: true
          type: object
          title: Options
          default: {}
      type: object
      required:
        - configured
        - installed
      title: SlackBotStatus
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKey:
      type: http
      description: >-
        API Key or JWT User Token. If using an API Key, set the X-As-User header
        to act as a specific user. A JWT User Token is always scoped to a
        specific user.
      scheme: bearer
      bearerFormat: Bearer <token>
    AsUser:
      type: apiKey
      description: >-
        Optionally set this header to act as a specific user when using an API
        Key, equivalent to first exchanging the API Key for a User Token
      in: header
      name: X-As-User

````