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

# List Webhook Subscriptions

> Returns all webhook subscriptions for the specified workspace with pagination support.



## OpenAPI

````yaml GET /api/v1/mgt/workspaces/{workspaceId}/webhook-subscriptions
openapi: 3.1.0
info:
  title: Xenia Team API - List Webhook Subscriptions
  version: 1.0.0
  description: Retrieve all webhook subscriptions for a workspace.
servers:
  - url: https://api.xenia.team
security: []
paths:
  /api/v1/mgt/workspaces/{workspaceId}/webhook-subscriptions:
    get:
      tags:
        - Webhooks
      summary: List Webhook Subscriptions
      description: >-
        Returns all webhook subscriptions for the specified workspace with
        pagination support.
      parameters:
        - name: workspaceId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Workspace ID
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 100
          description: Number of results to return
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
          description: Number of results to skip
        - name: status
          in: query
          schema:
            type: string
            enum:
              - active
              - inactive
              - all
          description: Filter by subscription status
      responses:
        '200':
          description: Subscriptions retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  code:
                    type: integer
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookSubscription'
                  pagination:
                    type: object
                    properties:
                      total:
                        type: integer
                      limit:
                        type: integer
                      offset:
                        type: integer
                      hasMore:
                        type: boolean
        '401':
          description: Unauthorized
        '403':
          description: Forbidden - WEBHOOKS feature not enabled
        '404':
          description: Workspace not found
      security:
        - clientKey: []
          clientSecret: []
components:
  schemas:
    WebhookSubscription:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        url:
          type: string
          format: uri
        events:
          type: array
          items:
            type: string
        description:
          type: string
        isActive:
          type: boolean
        status:
          type: string
        rateLimit:
          type: integer
        metadata:
          type: object
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    clientKey:
      type: apiKey
      in: header
      name: x-client-key
    clientSecret:
      type: apiKey
      in: header
      name: x-client-secret

````