add_profiles_to_list
Assign profile IDs to a specific list within Klaviyo to organize and manage customer data for targeted marketing campaigns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_id | Yes | ID of the list | |
profile_ids | Yes | Array of profile IDs to add to the list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"list_id": {
"description": "ID of the list",
"type": "string"
},
"profile_ids": {
"description": "Array of profile IDs to add to the list",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"list_id",
"profile_ids"
],
"type": "object"
}