From b919da0c5f77b9a2a70570b177be96356521645b Mon Sep 17 00:00:00 2001 From: szekelyzol Date: Thu, 26 Sep 2024 15:45:52 +0200 Subject: [PATCH 1/2] Fix typo --- reference/create-and-manage-webhooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/create-and-manage-webhooks.md b/reference/create-and-manage-webhooks.md index 1033ee09..efcd0b7c 100644 --- a/reference/create-and-manage-webhooks.md +++ b/reference/create-and-manage-webhooks.md @@ -200,7 +200,7 @@ api.video provides secure signatures for each webhook you subscribe to. You can - When this webhook subscription is created, sends a signature secret in a `201` response, with a similar body: + When this webhook subscription is created, api.video returns a signature secret in a `201` response, with a response body similar to this:
From aaa214de15b4fe3e346f9312199d1ac87e02fd72 Mon Sep 17 00:00:00 2001 From: szekelyzol Date: Thu, 26 Sep 2024 15:49:30 +0200 Subject: [PATCH 2/2] Remove log refrence --- reference/create-and-manage-webhooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/create-and-manage-webhooks.md b/reference/create-and-manage-webhooks.md index efcd0b7c..58d339af 100644 --- a/reference/create-and-manage-webhooks.md +++ b/reference/create-and-manage-webhooks.md @@ -375,7 +375,7 @@ api.video handles failed webhook deliveries using these rules: * We accept responses that you send in return to a webhook notification. * We check for status codes in your responses above `HTTP 299`: `3xx` redirections, `4xx` client errors, and `5xx` server errors. -* In case of an unsuccessful delivery, api.video logs the issue and retries sending the webhook notification 3 times, with 3 second intervals between each try. +* In case of an unsuccessful delivery, api.video retries sending the webhook notification 3 times, with 3 second intervals between each try. * In case the status code in your response is `1xx` or `2xx`, api.video assumes that the delivery is successful and does not retry. ---