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

# Simulate product update notification

> Creates a non-production product update notification for integration and UI testing. This endpoint is disabled in production.



## OpenAPI

````yaml /openapi/openapi.json post /simulate/notifications/product-updates
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /simulate/notifications/product-updates:
    post:
      tags:
        - Simulation
      summary: Simulate product update notification
      description: >-
        Creates a non-production product update notification for integration and
        UI testing. This endpoint is disabled in production.
      operationId: post_simulate_notifications_product_updates
      responses:
        '200':
          description: Simulated product update created
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/SimulateProductUpdateResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  notification_key: product_update_0197f1f0
                  product_update_id: 0197f1f0-0000-7000-8000-000000000007
                  state: created
                status: success
        '403':
          description: Simulate API disabled in production
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: FORBIDDEN
                      message:
                        type: string
                        example: request is not allowed
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: FORBIDDEN
                  message: request is not allowed
                status: error
      security: []
components:
  schemas:
    SimulateProductUpdateResponse:
      type: object
      description: >-
        Result returned after creating a non-production product update
        notification.
      required:
        - product_update_id
        - notification_key
        - state
      properties:
        notification_key:
          type: string
        product_update_id:
          type: string
          format: uuid
        state:
          type: string
      example:
        notification_key: product_update_019d1a2a-ec7a-7e51-a488-b001931e0faa
        product_update_id: 019d1a2a-ec7a-7e51-a488-b001931e0faa
        state: created

````