Skip to content

EnsureParticipant

Ensures that specified email address is saved as a participant identity.

1
$Membership.EnsureParticipant(participant: ParticipantInfo):Identity

Parameters

ParticipantInfo participant

Returns

Returns the created participant Identity

Remarks

Example

1
2
3
4
5
$Membership.EnsureParticipant({
    Email : '[email protected]',
    Name : 'John Doe',
    Language : 'en'
});

Types

ParticipantInfo

Represents a external participant information.

Email : string
Email address of participant

Language : string
Preferred language of participant

Name : string
Name of participant

See Also