This topic was automatically generated from Slack. You can find the original thread here.
Hi,
const { data: deployedTrigger } = await pd.deployTrigger({
externalUserId,
triggerId: "stripe-custom-webhook-events",
configuredProps: {
stripe: {
authProvisionId: accountId,
},
enabled_events: [
"invoice.created",
"invoice.updated",
"invoice.payment_failed",
],
},
webhookUrl: stripeWebhookUrl,
});
The trigger is deployed alright only my webhook is receiving all events, not those from enabled_events
.
Should enabled_events
be nested under stripe
here?