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

interface BasicContact {
    avatar?: null | AvatarSize[];
    country_code?: null | string;
    created_at?: string;
    email?: null | string;
    external_id?: null | string;
    handle?: null | string;
    id?: null | string;
    is_accepted_contact?: boolean;
    name: string;
    object?: null | string;
    persona_id?: null | string;
    phone?: null | string;
    short_id?: null | string;
    user_account_id?: null | string;
    user_id?: null | string;
}

Properties

avatar?: null | AvatarSize[]

contact avatar

country_code?: null | string
created_at?: string
email?: null | string

The email address of the contact

external_id?: null | string
handle?: null | string

The Mozaic handle for a contact

id?: null | string
is_accepted_contact?: boolean

Specifies whether this contact is in network or out of network

name: string

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

object?: null | string

The name of this object

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