From 5634c21f3a236567624987776a75def8f99f101d Mon Sep 17 00:00:00 2001 From: Albin Antony Date: Thu, 26 Oct 2023 11:10:39 +0530 Subject: [PATCH] Fix #369 Webhooks recent delivery api giving 404 error --- src/v2/http_path/config_paths.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/http_path/config_paths.go b/src/v2/http_path/config_paths.go index 42edc46..982e4aa 100644 --- a/src/v2/http_path/config_paths.go +++ b/src/v2/http_path/config_paths.go @@ -34,7 +34,7 @@ const ConfigUpdateWebhook = "/v2/config/webhook/{webhookId}" const ConfigDeleteWebhook = "/v2/config/webhook/{webhookId}" const ConfigListWebhooks = "/v2/config/webhooks" const ConfigPingWebhook = "/v2/config/webhook/{webhookId}/ping" -const ConfigListRecentWebhookDeliveries = "/v2/config/webhooks/{webhookId}/delivery" +const ConfigListRecentWebhookDeliveries = "/v2/config/webhooks/{webhookId}/deliveries" const ConfigReadRecentWebhookDelivery = "/v2/config/webhooks/{webhookId}/delivery/{deliveryId}" const ConfigRedeliverWebhookPayloadByDeliveryID = "/v2/config/webhooks/{webhookId}/delivery/{deliveryId}/redeliver" const ConfigListWebhookEventTypes = "/v2/config/webhooks/event-types"