Interface for a profile

interface Profile {
    email?: string;
    externalId?: string;
    firstName?: string;
    image?: string;
    lastName?: string;
    location?: Location;
    organization?: string;
    phoneNumber?: string;
    properties?: ProfileProperties;
    title?: string;
}

Properties

email?: string

Individual's email address

externalId?: string

A unique identifier used by customers to associate Klaviyo profiles with profiles in an external system, such as a point-of-sale system. Format varies based on the external system.

firstName?: string

Individual's first name

image?: string

URL pointing to the location of a profile image

lastName?: string

Individual's last name

location?: Location

An object containing location information for this profile

organization?: string

Name of the company or organization within the company for whom the individual works

phoneNumber?: string

Individual's phone number in E.164 format

properties?: ProfileProperties

An object containing key/value pairs for any custom properties assigned to this profile

title?: string

Individual's job title