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

# Get a webhook

> Returns a single webhook configuration by UUID



## OpenAPI

````yaml /openapi.json get /webhooks/{uuid}
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/{uuid}:
    get:
      tags:
        - Webhooks
      summary: Get a webhook
      description: Returns a single webhook configuration by UUID
      parameters:
        - name: uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: UUID of the webhook to retrieve
      responses:
        '200':
          description: Webhook retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  webhook:
                    type: object
                    properties:
                      uuid:
                        type: string
                        format: uuid
                        example: a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d
                      name:
                        type: string
                        description: Human-readable webhook name
                        example: Production Webhook
                      url:
                        type: string
                        example: https://example.com/webhook
                      secret:
                        type: string
                        example: whsec_abc123def456...
                      events:
                        type: array
                        items:
                          type: string
                          enum:
                            - outbound.queued
                            - 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
                        example:
                          - outbound.delivered
                          - outbound.bounced
                      status:
                        type: string
                        example: enabled
                      filter_users:
                        type: array
                        items:
                          type: string
                        nullable: true
                        example: null
                      filter_domains:
                        type: array
                        items:
                          type: string
                        nullable: true
                        example: null
                      created_at:
                        type: integer
                        example: 1736524800
                      last_modified:
                        type: integer
                        example: 1736524800
        '400':
          description: Bad request - Invalid UUID format
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Invalid webhook UUID format
        '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
        '404':
          description: Not found - Webhook not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Webhook 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 webhook
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````