create_list
Generate and manage customer lists or segments within the Klaviyo API by specifying a name and type. Use this tool to organize and segment audience data for targeted marketing campaigns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_type | Yes | Type of list (list or segment) | |
name | Yes | Name of the list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"list_type": {
"description": "Type of list (list or segment)",
"enum": [
"list",
"segment"
],
"type": "string"
},
"name": {
"description": "Name of the list",
"type": "string"
}
},
"required": [
"name",
"list_type"
],
"type": "object"
}