> ## 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 Event Types

> Returns all available webhook event types with their tier, category, and sample payload information.



## OpenAPI

````yaml GET /api/v1/mgt/webhook-event-types
openapi: 3.1.0
info:
  title: Xenia Team API - List Webhook Event Types
  version: 1.0.0
  description: Retrieve available webhook event types and their metadata.
servers:
  - url: https://api.xenia.team
security: []
paths:
  /api/v1/mgt/webhook-event-types:
    get:
      tags:
        - Webhooks
      summary: List Event Types
      description: >-
        Returns all available webhook event types with their tier, category, and
        sample payload information.
      responses:
        '200':
          description: Event types retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  code:
                    type: integer
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: Event type identifier
                        description:
                          type: string
                          description: Human-readable description
                        tier:
                          type: integer
                          description: Event tier (1=critical, 2=standard, 3=extended)
                        category:
                          type: string
                          description: Event category (task, submission, user)
                        isActive:
                          type: boolean
                          description: Whether event is currently available
                        samplePayload:
                          type: object
                          description: Example payload structure
              example:
                status: true
                code: 200
                data:
                  - name: task.status_changed
                    description: Triggered when a task status changes
                    tier: 1
                    category: task
                    isActive: true
                    samplePayload:
                      taskId: uuid
                      previousStatus: Open
                      newStatus: Completed
        '401':
          description: Unauthorized - Missing or invalid authentication
      security:
        - clientKey: []
          clientSecret: []
components:
  securitySchemes:
    clientKey:
      type: apiKey
      in: header
      name: x-client-key
    clientSecret:
      type: apiKey
      in: header
      name: x-client-secret

````