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

# Product Order Webhook

> Receive real-time notifications when new products are added to the ACME catalog

Receive real-time notifications when new products are added to the ACME catalog. Perfect for staying updated on our latest wacky inventions!


## OpenAPI

````yaml WEBHOOK /product/webhook
openapi: 3.1.0
info:
  title: Acme Corporation Product Catalog API
  description: >-
    The official API for managing ACME Corporation's wacky product catalog. Use
    at your own risk!
  license:
    name: ACME License - Explosions Not Covered
  version: 1.0.0
servers:
  - url: https://api.acmecorp.com
security:
  - bearerAuth: []
paths: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ACME Bearer token (obtained with product purchase)

````