Triggered when a group is created.
This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Triggered when a group is deleted.
This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Triggered when a group's logo is changed.
Group cover data.
This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Triggered when a group's description is changed.
Group description data.
This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Triggered when a new member is added to a group, either directly by an admin or when a Join Request is approved.
This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Triggered when a member is removed from a group.
function wixSocialGroupsV2_onGroupMemberRemoved(
event: GroupMemberRemoved,
): void;
export function wixSocialGroupsV2_onGroupMemberRemoved(event) {
const eventId = event.metadata.id;
const entityId = event.data.groupMember._id;
}
This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.