Mun design
  1. Public Webhooks
Mun design
  • Overview
  • Public Orders
    • Create Order
      POST
    • Update Order Status
      PUT
    • List Orders
      GET
    • Update Order
      PUT
    • Get Order
      GET
    • Cancel Order
      PUT
    • Delete Order
      DELETE
  • Public Webhooks
    • Register Webhook
      POST
    • Update Webhook
      PUT
    • Get Webhook
      GET
    • Delete Webhook
      DELETE
    • Test Webhook
      POST
  • Public Products
    • List Products
      GET
  1. Public Webhooks

Update Webhook

PUT
/webhooks/update
Update webhook configuration
Required API Key in header: X-API-Key

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/webhooks/update' \
--header 'Content-Type: application/json' \
--data-raw '{
    "url": "http://example.com",
    "events": [
        "string"
    ],
    "is_active": true
}'
Response Response Example
200 - Example 1
{}
Modified at 2025-09-15 17:52:50
Previous
Register Webhook
Next
Get Webhook
Built with