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

# List all webhooks

> Returns all webhook configurations for the authenticated user



## OpenAPI

````yaml /openapi.json get /webhooks
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List all webhooks
      description: Returns all webhook configurations for the authenticated user
      responses:
        '200':
          description: List of webhooks retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        uuid:
                          type: string
                          format: uuid
                          description: Unique webhook UUID
                          example: a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d
                        name:
                          type: string
                          description: Human-readable webhook name/identifier
                          maxLength: 64
                          example: Production Webhook
                        url:
                          type: string
                          format: uri
                          description: Webhook endpoint URL
                          example: https://example.com/webhook
                        secret:
                          type: string
                          description: Webhook signing secret
                          example: whsec_abc123def456...
                        events:
                          type: array
                          items:
                            type: string
                            enum:
                              - outbound.delivered
                              - outbound.bounced
                              - outbound.rejected
                              - outbound.deferred
                              - outbound.spam
                              - outbound.dropped
                              - outbound.virus
                              - outbound.opened
                              - outbound.clicked
                              - outbound.complaint
                              - inbound.received
                              - inbound.delivered
                              - inbound.spam
                              - inbound.blocked
                          description: List of event types this webhook subscribes to
                          example:
                            - outbound.delivered
                            - outbound.bounced
                            - inbound.received
                        status:
                          type: string
                          enum:
                            - enabled
                            - disabled
                          description: Webhook status
                          example: enabled
                        filter_users:
                          type: array
                          items:
                            type: string
                          nullable: true
                          description: Filter outbound events by username (null = all)
                          example: null
                        filter_domains:
                          type: array
                          items:
                            type: string
                          nullable: true
                          description: Filter inbound events by domain (null = all)
                          example:
                            - example.com
                        created_at:
                          type: integer
                          description: Unix timestamp of creation
                          example: 1736524800
                        last_modified:
                          type: integer
                          description: Unix timestamp of last modification
                          example: 1736524800
        '401':
          description: Unauthorized - User not authenticated
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: User information not found
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Failed to fetch webhooks
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````