Klaviyo Identify
The Identify API is used to save information about a user without needing to track an event.
Data to Identify/Save​
If any of the following data is new or has changed, be sure to send it with an Identify API call (or include as part of customer_properties if using the Track API):
note
Any fields with $ in front are special fields within Klaviyo that have some extra functionality. Any other fields are allowed to be passed and are custom and don't have $ prepended.
- User Info
$email$first_name$last_name$phone_number$city$region$country$zip$image$consent: list of strings; eg: ['sms', 'email', 'web', 'directmail', 'mobile']birthdategender
- Final Wishes
- plan completion status
fwCompletedPlanning
- experience preferences
experienceStyleexperienceCategoryexperiencePackageIdexperienceInvitedTypeexperienceVibeexperienceDonationsexperienceCelebrationTypeexperienceCelebrationSpecific
- venue preferences
venueServicesNamevenueServicesAddressStreet1venueServicesAddressCityvenueServicesAddressStatevenueServicesAddressZipvenueServicesSomewhereElsevenueServicesMyFamilyCanDecidevenueServicesTheFuneralHomevenueServicesSkipvenueAfterServicesNamevenueAfterServicesAddressStreet1venueAfterServicesAddressCityvenueAfterServicesAddressStatevenueAfterServicesAddressZipvenueAfterServicesMyFamilyCanDecidevenueAfterServicesSkip
- funeral home location
funeralHomefuneralHomeCityfuneralHomeStatefuneralHomeSkipped
- disposition preference
dispositionStyledispositionLocationdispositionLocationSkipdispositionLocationNamedispositionLocationAddressdispositionLocationAddressStreet1dispositionLocationAddressCitydispositionLocationAddressStatedispositionLocationAddressZipdispositionLocationMyFamilyCanDecidedispositionLocationKeepItInAnUrndispositionPlotSkipdispositionPlotPurchased
- plan completion status
- Health & Care
- Plan completion status
hcCompletedPlanning
- Weather preferences
climateValue
- Surroundings preferences
surroundingsValue
- Hobbies
hobbiescustomHobbies
- Travel preferences
travelValue
- Food & Drink preferences
foodcustomFood
- R&R preferences
restcustomRest
- Plan completion status
- SLI
- Plan completion status
sliCompletedPlan
- Application status
SLIOrderId
- birthdate
- gender
- coverage amount
selectedSLIPricemonthlyRate
- address
- city
- state
- zip
- Plan completion status
Examples​
{
"token": "PUBLIC_KEY",
"properties": {
// make sure to include at least $email or $phone_number to be able to identify the user
"$email": user.email,
"$first_name": user.name.first,
"$last_name": user.name.last,
"$city": user.address.city,
"$region":user.address.state
}
}