taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 210d3f27b6c6619fb02e20b7cd15ee3d237a0859
parent 15fb8c7d2c15c2cdafccf08db51ecad510147c21
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed,  1 Feb 2023 13:08:47 +0100

Merge branch 'master' of git+ssh://git.taler.net/docs

Diffstat:
Mcore/api-merchant.rst | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -3313,7 +3313,7 @@ Inspecting webhook .. http:get:: [/instances/$INSTANCES]/private/webhooks - This is used to return the list of all the webhooks. + This is used to return all the webhooks that are present in our backend. **Response:** @@ -3327,16 +3327,16 @@ Inspecting webhook interface WebhookSummaryResponse { - // List of webhooks that are present in our backend. - webhooks_list: WebhookEntry[]; + // Return webhooks that are present in our backend. + webhooks: WebhookEntry[]; } The WebhookEntry object describes a webhook. It has the following structure: - .. ts:def:: WebhookEntry + .. ts:def:: WebhookSummaryResponse - interface WebhookEntry { + interface Webhook { // Webhook identifier, as found in the webhook. webhook_id: string;