Klaviyo · Schema
ProfileOperationUpdateOrCreateList
MarketingEmailSMSCustomer DataEcommerceAutomation
Properties
| Name | Type | Description |
|---|---|---|
| operator | string | The type of operation to perform on a profile property. |
| property_type | string | |
| property_operation | string | The type of operation to perform on a list property. |
| property_key | string | |
| property_value | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProfileOperationUpdateOrCreateList",
"title": "ProfileOperationUpdateOrCreateList",
"type": "object",
"properties": {
"operator": {
"description": "The type of operation to perform on a profile property.",
"type": "string",
"enum": [
"create",
"update"
]
},
"property_type": {
"type": "string",
"enum": [
"list"
]
},
"property_operation": {
"description": "The type of operation to perform on a list property.",
"type": "string",
"enum": [
"add",
"remove"
],
"nullable": true
},
"property_key": {
"type": "string"
},
"property_value": {
"type": "string"
}
},
"required": [
"operator",
"property_type",
"property_key",
"property_value"
]
}