addedInput schema / properties / campaignDurationDays
Added value: +{
+ "default": 30,
+ "enum": [
+ 7,
+ 14,
+ 21,
+ 30
+ ],
+ "type": "integer"
+}
addedInput schema / properties / enabled
Added value: +{
+ "default": true,
+ "type": "boolean"
+}
addedInput schema / properties / guardrails
Added value: +{
+ "properties": {
+ "handoffKeywords": {
+ "items": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ "maxRepliesPerConversationPerDay": {
+ "maximum": 10,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "quietHours": {
+ "properties": {
+ "end": {
+ "pattern": "^\\d{2}:\\d{2}$",
+ "type": "string"
+ },
+ "start": {
+ "pattern": "^\\d{2}:\\d{2}$",
+ "type": "string"
+ },
+ "timezone": {
+ "maxLength": 100,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "start",
+ "end",
+ "timezone"
+ ],
+ "type": "object"
+ }
+ },
+ "type": "object"
+}
addedInput schema / properties / keyword
Added value: +{
+ "description": "Required when triggerEvent is `comment`.",
+ "maxLength": 100,
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / matchType
Added value: +{
+ "default": "contains",
+ "enum": [
+ "contains"
+ ],
+ "type": "string"
+}
addedInput schema / properties / message
Added value: +{
+ "maxLength": 5000,
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / platform
Added value: +{
+ "description": "Optional. Derived from the selected account when omitted.",
+ "enum": [
+ "instagram",
+ "facebook"
+ ],
+ "type": "string"
+}
addedInput schema / properties / platformAccountId
Added value: +{
+ "description": "Instagram account id or Facebook Page id from the workspace's connected accounts.",
+ "maxLength": 255,
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / responseMode
Added value: +{
+ "default": "template",
+ "enum": [
+ "template",
+ "ai"
+ ],
+ "type": "string"
+}
addedInput schema / properties / triggerEvent
Added value: +{
+ "default": "comment",
+ "enum": [
+ "comment",
+ "dm"
+ ],
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "idempotency_key"
-]New value: +[
+ "idempotency_key",
+ "platformAccountId",
+ "message"
+]