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

# List known workspace ids

> Distinct Airtable workspace ids the user has provisioned monitoring bases in before (for pickers).



## OpenAPI

````yaml /openapi.json get /monitoring-config/known-workspaces
openapi: 3.0.4
info:
  title: Simplified Webhooks Backend
  version: '1.0'
  description: >-
    API for Airtable webhooks, usage (record & attachment-storage counting), and
    change-monitoring audit logs.
  contact:
    name: API Support
    url: https://www.simplified-webhooks.com/contact-us
    email: contact@simplified-webhooks.com
servers:
  - url: https://api.simplified-webhooks.com
    description: Main server
security: []
tags:
  - name: Webhooks
    description: Register, update, and delete delivery webhooks for Airtable changes.
  - name: Usage
    description: >-
      Track daily record counts and attachment storage per Airtable base, and
      read the snapshot time-series.
  - name: Audit Log
    description: >-
      Configure change monitoring that logs every record & schema change into a
      Changes table in your own Airtable base.
paths:
  /monitoring-config/known-workspaces:
    get:
      tags:
        - Audit Log
      summary: List known workspace ids
      description: >-
        Distinct Airtable workspace ids the user has provisioned monitoring
        bases in before (for pickers).
      operationId: listMonitoringKnownWorkspaces
      responses:
        '200':
          description: Known workspace ids.
          content:
            application/json:
              schema:
                type: object
                properties:
                  workspaceIds:
                    type: array
                    items:
                      type: string
                    example:
                      - wspXXXXXXXXXXXXXX
        '401':
          description: Unauthorized, authentication token is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKey: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          example: 'Missing required fields: [tableId, event]'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: API key for authentication.

````