Options for including contact information export ContactDeets

interface ContactDeets {
    address?: AddressDeets;
    avatar_bytes?: null | string;
    display_name?: null | string;
    dob?: DOBDeets;
    email_addresses?: null | EmailDeets[];
    first_name: string;
    id?: null | string;
    known_name?: null | string;
    last_name: string;
    middle_initial?: null | string;
    object?: null | string;
    phone_numbers?: null | PhoneDeets[];
    short_bio?: null | string;
    title?: null | string;
    user_id?: null | string;
}

Properties

address?: AddressDeets
avatar_bytes?: null | string

Base64 encoded byte array (PNG format) to upload as an avatar during contact creation.

display_name?: null | string

A separate name for any display purposes.

dob?: DOBDeets
email_addresses?: null | EmailDeets[]

A collection of email addresses for the contact

first_name: string

The contact's first name

id?: null | string

The Contact Id

known_name?: null | string

A separate name that this contact might be known by.

last_name: string

The contact's last name

middle_initial?: null | string

The contact's middle initial

object?: null | string
phone_numbers?: null | PhoneDeets[]

The contact's phone number

short_bio?: null | string

A short biography for the

title?: null | string

A title for the contact (e.g. Mr., Mrs., .Ms, etc)

user_id?: null | string

The user id to operate on their behalf (tenants only)