$Membership.EnsureParticipant
Overview
Ensures that specified email address is saved as a participant identity.
Identity $Membership.EnsureParticipant(participant:
ParticipantInfo)
Arguments
ParticipantInfo participant
Returns
Returns the created participant Identity | identity
Example
$Membership.EnsureParticipant({
Email : 'john.doe@gmail.com',
Name : 'John Doe',
Language : 'en'
});
Types
ParticipantInfo
Represents a external participant information.
{
// Email address of participant
Email : string
// Preferred language of participant
Language : string
// Name of participant
Name : string
}
Copyright © 2010 - 2023 Emakin. All rights reserved.