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

# List webhooks



## OpenAPI

````yaml /openapi/vued-public-api.yaml get /orgs/{org_id}/webhooks
openapi: 3.1.0
info:
  title: Vued Public API
  version: 0.1.0
  description: >-
    Cloud API for Vued organization metadata, signed audio URLs, API keys, and
    webhooks.
servers:
  - url: https://vued-office-api-dev.onrender.com/v1
security:
  - bearerAuth: []
tags:
  - name: Orgs
  - name: Search
  - name: Audio
  - name: Files
  - name: Directory
  - name: API Keys
  - name: Webhooks
paths:
  /orgs/{org_id}/webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      operationId: listWebhooks
      parameters:
        - $ref: '#/components/parameters/OrgId'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Cursor'
      responses:
        '200':
          description: Webhook page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookPage'
components:
  parameters:
    OrgId:
      name: org_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 50
    Cursor:
      name: cursor
      in: query
      schema:
        type: string
  schemas:
    WebhookPage:
      allOf:
        - $ref: '#/components/schemas/Page'
        - type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/Webhook'
    Page:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          items: {}
        next_cursor:
          type:
            - string
            - 'null'
    Webhook:
      type: object
      properties:
        id:
          type: integer
        object:
          type: string
          enum:
            - webhook
        name:
          type: string
        org_id:
          type: string
          format: uuid
        created_by:
          type: string
          format: uuid
        url:
          type: string
          format: uri
        events:
          type: array
          items:
            $ref: '#/components/schemas/WebhookEvent'
        payload_fields:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        created_at:
          type: string
        disabled:
          type: boolean
        fail_count:
          type: integer
        last_delivery_at:
          type:
            - string
            - 'null'
        last_success_at:
          type:
            - string
            - 'null'
        last_failure_at:
          type:
            - string
            - 'null'
        last_error:
          type:
            - string
            - 'null'
        secret:
          type: string
          description: Signing secret. Present only on create.
    WebhookEvent:
      type: string
      enum:
        - meeting.started
        - meeting.ended
        - meeting.transcription.completed
        - meeting.speaker_id.completed
        - meeting.finalized
        - meeting.automatic.surfaced
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````