Solved

How to update klaviyo profile using external id or email ?

  • 2 April 2024
  • 2 replies
  • 46 views

Badge

Hi team,
I’m new to klaviyo, I want to update custom properties in klaviyo profile but it requires profile id, Is there any API or method in npm ‘klaviyo-api’ package by which we can update profile using external id or an email ?

icon

Best answer by abhijithvs 2 April 2024, 15:22

View original

2 replies

Badge +1

Hey. You can use create or update profile and send it just the email. 

Badge +1

Yes You can use Create or Update profile in the latest stable version of Klaviyo API - 

API: /api/profile-import/
Sample payload:

{
"data": {
"type": "profile",
"attributes": {
"email": "test@klaviyo.com"
}
}
}

 

Reply