> ## 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.

# Get Webhook Subscription



## OpenAPI

````yaml GET /api/v1/mgt/workspaces/{workspaceId}/webhook-subscriptions/{subscriptionId}
openapi: 3.1.0
info:
  title: Xenia Team API - Get Webhook Subscription
  version: 1.0.0
  description: Retrieve details of a specific webhook subscription.
servers:
  - url: https://api.xenia.team
security: []
paths:
  /api/v1/mgt/workspaces/{workspaceId}/webhook-subscriptions/{subscriptionId}:
    get:
      tags:
        - Webhooks
      summary: Get Webhook Subscription
      description: Returns detailed information about a specific webhook subscription.
      parameters:
        - name: workspaceId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Workspace ID
        - name: subscriptionId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Subscription ID
      responses:
        '200':
          description: Subscription retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  code:
                    type: integer
                  data:
                    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
                      lastDeliveryAt:
                        type: string
                        format: date-time
                      lastDeliveryStatus:
                        type: string
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Subscription not found
      security:
        - clientKey: []
          clientSecret: []
components:
  securitySchemes:
    clientKey:
      type: apiKey
      in: header
      name: x-client-key
    clientSecret:
      type: apiKey
      in: header
      name: x-client-secret

````