diff --git a/apps/vue/src/api/webhooks/send-attempts.ts b/apps/vue/src/api/webhooks/send-attempts.ts index a1341305b..dadfc25e9 100644 --- a/apps/vue/src/api/webhooks/send-attempts.ts +++ b/apps/vue/src/api/webhooks/send-attempts.ts @@ -32,7 +32,9 @@ export const getList = (input: WebhookSendAttemptGetListInput) => { service: remoteServiceName, controller: controllerName, action: 'GetListAsync', - params: input, + params: { + input: input, + }, }); }; diff --git a/apps/vue/src/api/webhooks/subscriptions.ts b/apps/vue/src/api/webhooks/subscriptions.ts index 4905218c2..10e7dd13b 100644 --- a/apps/vue/src/api/webhooks/subscriptions.ts +++ b/apps/vue/src/api/webhooks/subscriptions.ts @@ -59,7 +59,9 @@ export const getList = (input: WebhookSubscriptionGetListInput) => { service: remoteServiceName, controller: controllerName, action: 'GetListAsync', - params: input, + params: { + input: input, + }, }); };