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

# List webhook endpoints

> Returns your registered webhook endpoints (without their secrets).



## OpenAPI

````yaml https://api.kuahr.com/openapi/v1.json get /v1/webhooks
openapi: 3.1.1
info:
  title: Kua API
  description: >-
    The Kua developer API — payroll, wallets, and payments for your own company.


    Authenticate with an API key issued from **Settings → API keys** in the
    dashboard, sent in the `X-Api-Key` header. Every request is scoped to the
    company that owns the key. Base URL: `https://api.kuahr.com` (all endpoints
    are versioned under `/v1`).
  version: v1
servers:
  - url: https://api.kuahr.com
    description: Production
security:
  - ApiKey: []
tags:
  - name: Payroll
    description: List and create payroll runs.
  - name: Employees
    description: Add people to your company.
  - name: Events
    description: The company event timeline (also delivered via webhooks).
  - name: Webhooks
    description: Register endpoints and inspect deliveries.
  - name: Test data
    description: Manage sandbox (test-mode) data.
  - name: Leave
    description: >-
      Time-off types, requests, balances, and allocations (requires the Leave
      add-on).
  - name: Advances
    description: Salary advances (requires the Salary advance add-on).
  - name: Performance
    description: OKRs, appraisals, and promotions (requires the Performance add-on).
paths:
  /v1/webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhook endpoints
      description: Returns your registered webhook endpoints (without their secrets).
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookList'
              example:
                webhooks:
                  - id: d4e5f6a7-0000-0000-0000-000000000001
                    url: https://your-app.com/kua/webhooks
                    description: Production receiver
                    eventTypes: payroll.run.disbursed,employee.created
                    isActive: true
                    createdAt: '2026-07-20T12:00:00+00:00'
        '401':
          description: Unauthorized
components:
  schemas:
    WebhookList:
      required:
        - webhooks
      type: object
      properties:
        webhooks:
          type: array
          items:
            $ref: '#/components/schemas/WebhookSummary'
      description: Your webhook endpoints.
    WebhookSummary:
      required:
        - id
        - url
        - description
        - eventTypes
        - isActive
        - createdAt
      type: object
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
        description:
          type:
            - 'null'
            - string
        eventTypes:
          type: string
          description: Comma-separated event types, or `*` for all.
        isActive:
          type: boolean
        createdAt:
          type: string
          format: date-time
      description: A webhook endpoint (without its secret).
  securitySchemes:
    ApiKey:
      type: apiKey
      description: Your API key, e.g. `kua_live_…` (or `kua_test_…` in test mode).
      name: X-Api-Key
      in: header

````