diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-06-24 16:59:23 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-07-02 11:24:34 +0200 |
commit | b6aef4d235be0e3f1733f4229fd37ae0bcd66654 (patch) | |
tree | 740dc35577940c3109178bdab5f26c2f55646e19 /apps/webhook_listeners/openapi.json | |
parent | 8abf62715c817eeb0584eb1c85ebf78e7f84fc6f (diff) | |
download | nextcloud-server-b6aef4d235be0e3f1733f4229fd37ae0bcd66654.tar.gz nextcloud-server-b6aef4d235be0e3f1733f4229fd37ae0bcd66654.zip |
fix(webhooks): Completed API documentation and updated openapi.json
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/webhook_listeners/openapi.json')
-rw-r--r-- | apps/webhook_listeners/openapi.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/webhook_listeners/openapi.json b/apps/webhook_listeners/openapi.json index 01a9c59e6c2..b460fea0b02 100644 --- a/apps/webhook_listeners/openapi.json +++ b/apps/webhook_listeners/openapi.json @@ -75,6 +75,9 @@ "type": "object" } }, + "userIdFilter": { + "type": "string" + }, "headers": { "type": "object", "additionalProperties": { @@ -223,6 +226,11 @@ "type": "object" } }, + "userIdFilter": { + "type": "string", + "nullable": true, + "description": "User id to filter on. The webhook will only be called by requests from this user. Empty or null means no filtering." + }, "headers": { "type": "object", "nullable": true, @@ -501,6 +509,11 @@ "type": "object" } }, + "userIdFilter": { + "type": "string", + "nullable": true, + "description": "User id to filter on. The webhook will only be called by requests from this user. Empty or null means no filtering." + }, "headers": { "type": "object", "nullable": true, |