diff --git a/packages/features/webhooks/lib/sendPayload.ts b/packages/features/webhooks/lib/sendPayload.ts index da7d355acb..402f42bb5f 100644 --- a/packages/features/webhooks/lib/sendPayload.ts +++ b/packages/features/webhooks/lib/sendPayload.ts @@ -77,11 +77,7 @@ function getZapierPayload( } function applyTemplate(template: string, data: WebhookDataType, contentType: ContentType) { - const organizer = JSON.stringify(data.organizer); - const attendees = JSON.stringify(data.attendees); - const formattedData = { ...data, metadata: JSON.stringify(data.metadata), organizer, attendees }; - - const compiled = compile(template)(formattedData).replace(/"/g, '"'); + const compiled = compile(template)(data).replace(/"/g, '"'); if (contentType === "application/json") { return JSON.stringify(jsonParse(compiled));