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

# Notify Board

> Internal endpoint called by task_runner to notify board subscribers of changes.



## OpenAPI

````yaml /openapi.json post /api/workspaces/{id}/board/notify
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/workspaces/{id}/board/notify:
    post:
      tags:
        - board
      summary: Notify Board
      description: >-
        Internal endpoint called by task_runner to notify board subscribers of
        changes.
      operationId: notify_board_api_workspaces__id__board_notify_post
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '204':
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````