Properties
| Name | Type | Description |
|---|---|---|
| id | string | Not allowed on create. |
| name | string | |
| vendor_id | string | |
| smart_sending_enabled | boolean | |
| transactional | boolean | |
| add_tracking_params | boolean | |
| additional_filters | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FlowWhatsApp",
"title": "FlowWhatsApp",
"type": "object",
"properties": {
"id": {
"description": "Not allowed on create.",
"type": "string",
"nullable": true
},
"name": {
"type": "string",
"nullable": true
},
"vendor_id": {
"type": "string",
"nullable": true
},
"smart_sending_enabled": {
"type": "boolean",
"example": true,
"default": true
},
"transactional": {
"type": "boolean",
"default": false
},
"add_tracking_params": {
"type": "boolean",
"default": false
},
"additional_filters": {
"type": "object",
"nullable": true,
"properties": {
"condition_groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"conditions": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/ProfilePropertyCondition"
},
{
"$ref": "#/components/schemas/ProfileHasGroupMembershipCondition"
},
{
"$ref": "#/components/schemas/ProfileNoGroupMembershipCondition"
},
{
"$ref": "#/components/schemas/ProfileRegionCondition"
},
{
"$ref": "#/components/schemas/ProfilePostalCodeDistanceCondition"
},
{
"$ref": "#/components/schemas/ProfilePredictiveAnalyticsDateCondition"
},
{
"$ref": "#/components/schemas/ProfilePredictiveAnalyticsStringCondition"
},
{
"$ref": "#/components/schemas/ProfilePredictiveAnalyticsNumericCondition"
},
{
"$ref": "#/components/schemas/ProfileMarketingConsentCondition"
},
{
"$ref": "#/components/schemas/FlowsProfileMetricCondition"
},
{
"$ref": "#/components/schemas/ProfileRandomSampleCondition"
},
{
"$ref": "#/components/schemas/ProfileHasCustomObjectCondition"
},
{
"$ref": "#/components/schemas/ProfilePermissionsCondition"
}
]
}
}
},
"required": [
"conditions"
]
}
}
},
"required": [
"condition_groups"
]
}
}
}