request_profile_deletion
Remove customer profiles from the Klaviyo platform by specifying an email, phone number, or profile ID using this tool. Ensures compliance with data deletion requests.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Email of the profile to delete | ||
phone_number | No | Phone number of the profile to delete | |
profile_id | No | ID of the profile to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Email of the profile to delete",
"format": "email",
"type": "string"
},
"phone_number": {
"description": "Phone number of the profile to delete",
"type": "string"
},
"profile_id": {
"description": "ID of the profile to delete",
"type": "string"
}
},
"type": "object"
}