A lightweight object for specifying 'to' and 'from' addresses and other forms of general contact export BasicContact

interface BasicContact {
    created_at?: string;
    email?: null | string;
    handle?: null | string;
    id?: null | string;
    name: string;
    persona_id?: null | string;
    phone?: null | string;
    short_id?: null | string;
    user_account_id?: null | string;
    user_id?: null | string;
}

Properties

created_at?: string
email?: null | string

The email address of the contact

handle?: null | string

The Mozaic handle for a contact

id?: null | string
name: string

Loosely, the name of the contact. May be changed during registration

persona_id?: null | string

Specifies the persona associated with this contact record

phone?: null | string

The fully qualified phone number of the contact

short_id?: null | string
user_account_id?: null | string

Specifies the user account id associated with this contact record

user_id?: null | string

Specifies the user associated with this contact record