Notifies that a participant has joined the conversation

interface ParticipantAdded {
    channel: string;
    conversationId?: string;
    eventDate: Date;
    participant: Participant;
}

Hierarchy

  • ParticipantEventPayload
    • ParticipantAdded

Properties

channel: string

The channel through which the event was generated

conversationId?: string

The unique 36 character internal id that represents the conversation.

eventDate: Date

The date-time when the event was generated by the Contact Center

participant: Participant

The participant who joined the conversation