Rechat SDK
    Preparing search index...

    Interface IUser

    A Rechat user. The brand roster returned by Agents.list is a list of the brokerage's users (not MLS agent records).

    interface IUser {
        cover_image_url: null | string;
        created_at: number;
        deleted_at?: null | number;
        designation?: null | string;
        display_name: string;
        email: string;
        facebook?: null | string;
        first_name: null | string;
        id: string;
        instagram?: null | string;
        last_name: null | string;
        linkedin?: null | string;
        phone_number: null | string;
        profile_image_url: null | string;
        timezone?: string;
        twitter?: null | string;
        type: "user";
        updated_at: number;
        user_type: string;
        website?: null | string;
        youtube?: null | string;
    }
    Index

    Properties

    cover_image_url: null | string
    created_at: number
    deleted_at?: null | number
    designation?: null | string

    Professional designations, e.g. 'ABR, CRS'

    display_name: string
    email: string
    facebook?: null | string
    first_name: null | string
    id: string
    instagram?: null | string
    last_name: null | string
    linkedin?: null | string
    phone_number: null | string
    profile_image_url: null | string
    timezone?: string
    twitter?: null | string
    type: "user"
    updated_at: number
    user_type: string

    e.g. 'Agent', 'Client', 'Admin'

    website?: null | string
    youtube?: null | string