From 8cff95440e9d4409ca39112cf4a10ca2bf15bc3a Mon Sep 17 00:00:00 2001 From: Pallav Pandey Date: Mon, 25 May 2026 16:21:06 +0530 Subject: [PATCH] webhook-reset-options --- api-spec/openapiSpecv3-2_0.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/api-spec/openapiSpecv3-2_0.json b/api-spec/openapiSpecv3-2_0.json index f7fa55883..56b582a5d 100644 --- a/api-spec/openapiSpecv3-2_0.json +++ b/api-spec/openapiSpecv3-2_0.json @@ -32403,6 +32403,27 @@ "ENABLED", "DISABLED" ] + }, + "operation": { + "description": "Operation to perform. REPLACE (default) applies the provided fields and\nleaves omitted fields unchanged. RESET clears the fields listed in\nreset_options. All other fields in the request are ignored.
Version: 26.8.0.cl or later", + "default": "REPLACE", + "type": "string", + "enum": [ + "REPLACE", + "RESET" + ] + }, + "reset_options": { + "description": "List of optional configuration sections to clear. Each value removes the\ncorresponding configuration entirely from the webhook: AUTHENTICATION\nremoves the authentication config, SIGNATURE_VERIFICATION removes the\nsignature verification config, STORAGE_DESTINATION removes the storage\ndestination config.
Version: 26.8.0.cl or later", + "type": "array", + "items": { + "type": "string", + "enum": [ + "AUTHENTICATION", + "SIGNATURE_VERIFICATION", + "STORAGE_DESTINATION" + ] + } } } }