update_profile
Modify customer profile details in Klaviyo by updating fields like email, phone number, first name, last name, and custom properties using the profile ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Email address of the profile | ||
external_id | No | External ID for the profile | |
first_name | No | First name of the profile | |
id | Yes | ID of the profile to update | |
last_name | No | Last name of the profile | |
phone_number | No | Phone number of the profile | |
properties | No | Additional properties for the profile |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Email address of the profile",
"format": "email",
"type": "string"
},
"external_id": {
"description": "External ID for the profile",
"type": "string"
},
"first_name": {
"description": "First name of the profile",
"type": "string"
},
"id": {
"description": "ID of the profile to update",
"type": "string"
},
"last_name": {
"description": "Last name of the profile",
"type": "string"
},
"phone_number": {
"description": "Phone number of the profile",
"type": "string"
},
"properties": {
"additionalProperties": {},
"description": "Additional properties for the profile",
"type": "object"
}
},
"required": [
"id"
],
"type": "object"
}