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

# Get Webhook Details

> Retrieve details of a single webhook by its ID.



## OpenAPI

````yaml https://openapi.commercengine.io/ce-admin.json get /webhooks/{webhook_id}
openapi: 3.1.0
info:
  title: CE Admin APIs
  version: '1.0'
  summary: Comprehensive admin interface for managing your e-commerce platform
  description: >-
    Complete administrative API suite for Commerce Engine, providing powerful
    tools to manage products, orders, customers, inventory, analytics, and
    system configuration. Designed for administrators and backend integrations
    requiring full platform control.
  license:
    name: All Rights Reserved
    url: https://www.commercengine.io/contact-us
  contact:
    email: support@commercengine.io
    url: https://www.commercengine.io/contact-us
    name: Support
servers:
  - url: https://staging.api.commercengine.io/api/v1/{store_id}/admin
    description: Staging Server
    variables:
      store_id:
        default: store_id
        description: Store ID
  - url: https://prod.api.commercengine.io/api/v1/{store_id}/admin
    description: Prod Server
    variables:
      store_id:
        default: store_id
        description: Store ID
security:
  - Authorization: []
tags:
  - name: Analytics
    description: Analytics
  - name: Catalog
    description: Catalog
  - name: Coupons & promotions
    description: Coupons & promotions
  - name: Customers
    description: Customers
  - name: Filter Options
    description: Filter Options
  - name: Inventories
    description: Inventories
  - name: Marketplace
    description: Marketplace
  - name: Marketplace Catalog
    description: Marketplace Catalog
  - name: Media Gallery
    description: Media Gallery
  - name: Metrics
    description: Metrics
  - name: Orders
    description: Orders
  - name: Payments
    description: Payments
  - name: Payouts
    description: Payouts
  - name: POS
    description: POS
  - name: POSAdmin
    description: Admin endpoints to be used as proxy in pos
  - name: Segments
    description: Segments
  - name: Shipping
    description: Shipping
  - name: SSE
    description: SSE
  - name: Store
    description: Store
  - name: Webhooks
    description: Webhooks
paths:
  /webhooks/{webhook_id}:
    parameters:
      - name: webhook_id
        in: path
        description: Webhook ID
        required: true
        schema:
          type: string
    get:
      tags:
        - Webhooks
      summary: Get Webhook Details
      description: Retrieve details of a single webhook by its ID.
      operationId: get-webhook-detail
      responses:
        '200':
          description: Webhook details
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - message
                  - content
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  content:
                    $ref: '#/components/schemas/Webhook'
              examples:
                default:
                  value:
                    success: true
                    message: Webhook retrieved successfully
                    content:
                      created_at: '2025-03-25T12:00:00Z'
                      custom_headers:
                        Authorization: Bearer xyz123
                      endpoint: https://example.com/hooks/order
                      events:
                        - orders.created
                        - orders.shipped
                      id: e8a17f04-449f-40d2-9248-818b935f3c01
                      modified_at: '2025-03-25T12:00:00Z'
                      name: Order Webhook
                      status: active
                      webhook_secret_key: whsec_9e91f874...
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Webhook:
      title: Webhook
      type: object
      required:
        - id
        - name
        - endpoint
        - events
        - custom_headers
        - status
        - webhook_secret_key
        - created_at
        - modified_at
      properties:
        id:
          type: string
          readOnly: true
        name:
          type: string
        endpoint:
          type: string
          format: uri
        events:
          type: array
          items:
            type: string
            example: order.created
        custom_headers:
          type: object
          additionalProperties:
            type: string
        status:
          $ref: '#/components/schemas/WebhookStatus'
        webhook_secret_key:
          description: >-
            This will be shown only once during create. For all GET requests,
            this will be redacted.
          type: string
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        modified_at:
          type: string
          format: date-time
          readOnly: true
      x-tags:
        - Webhooks
    WebhookStatus:
      title: WebhookStatus
      type: string
      enum:
        - enabled
        - disabled
        - error
  responses:
    Unauthorized:
      description: Not authorized for given operation on the Resource
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: Not authorized for given operation on the Resource.
              success:
                type: boolean
                default: false
              code:
                type: string
                example: unauthorized
    NotFound:
      description: Requested resource not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              success:
                type: boolean
              code:
                type: string
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer

````