Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Identity $Membership.EnsureParticipant(emailAddress: string, name: stringparticipant: ParticipantInfo)

Arguments

string emailAddress
string nameParticipantInfo participant

Returns

Example

Code Block
languagejs
$Membership.EnsureParticipant({
    Email : 'john.doe@gmail.com',
    Name : 'John Doe',
    Language : 'en'
});

Types

ParticipantInfo

...

{ // Email address of participant Email : string // Preferred language of participant Language : string // Name of participant Name : string }