This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when a participation
object is created.
function onParticipationCreated(handler: function): void;
handler(event: ParticipationCreatedEnvelope): void | Promise<void>
import { participations } from "@wix/calendar";
participations.onParticipationCreated((event) => {
// handle your event here
});