From 3cfad8b024b2291b4d0401d9f96f774cc1fec6f1 Mon Sep 17 00:00:00 2001 From: "aleksej.paschenko" Date: Thu, 7 Nov 2024 15:56:56 +0300 Subject: [PATCH] Add /webhooks/{webhook_id}/back-online --- api/rt.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/api/rt.yml b/api/rt.yml index f1d8eaa9..f5b73bfb 100644 --- a/api/rt.yml +++ b/api/rt.yml @@ -87,6 +87,23 @@ paths: type: string 'default': $ref: '#/components/responses/Error' + /webhooks/{webhook_id}/back-online: + post: + description: "Let TONAPI know that webhook is ready to receive notifications after it has been unavailable" + operationId: webhookBackOnline + parameters: + - $ref: '#/components/parameters/tokenQuery' + - $ref: '#/components/parameters/webhookId' + responses: + '200': + description: "" + content: + application/json: + schema: + additionalProperties: true + example: { } + 'default': + $ref: '#/components/responses/Error' /webhooks/{webhook_id}/account-tx/subscribe: post: description: "subscribe to notifications for a particular set of accounts"