Interface PlaceGuestParticipant

Guest participant details for joining an anonymous chat room

interface PlaceGuestParticipant {
    captcha: string;
    chat_to_user_id?: string;
    email?: string;
    name: string;
    phone?: string;
    session_id: string;
    type?: string;
    user_id: string;
}

Properties

captcha: string

Captcha token for verification (required)

chat_to_user_id?: string

User ID of the person to chat with directly

email?: string

Email address of the guest

name: string

Display name for the guest (required)

phone?: string

Phone number of the guest

session_id: string

Session ID for the chat (required)

type?: string

Type of participant

user_id: string

User ID for the guest (required)