summaryrefslogtreecommitdiff
path: root/core/api-merchant.rst
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-02-01 13:08:47 +0100
committerChristian Grothoff <christian@grothoff.org>2023-02-01 13:08:47 +0100
commit210d3f27b6c6619fb02e20b7cd15ee3d237a0859 (patch)
treefb0d713e3f34b83717ab677a5593fd7f949553bb /core/api-merchant.rst
parent15fb8c7d2c15c2cdafccf08db51ecad510147c21 (diff)
parentff6234be35dd58027ace1cab5c6d4f6d5c2e6518 (diff)
downloaddocs-210d3f27b6c6619fb02e20b7cd15ee3d237a0859.tar.gz
docs-210d3f27b6c6619fb02e20b7cd15ee3d237a0859.tar.bz2
docs-210d3f27b6c6619fb02e20b7cd15ee3d237a0859.zip
Merge branch 'master' of git+ssh://git.taler.net/docs
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r--core/api-merchant.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 680ac590..526c4532 100644
--- 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;