ActiveCampaign · Schema

AIBroadcastUpdateRequest

AIBroadcastUpdateRequest schema from ActiveCampaign API

Marketing AutomationEmail MarketingCRMSales AutomationCustomer Experience

Properties

Name Type Description
source string
prompt string
tone string
broadcastId integer
View JSON Schema on GitHub

JSON Schema

activecampaign-sms-ai-broadcast-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/activecampaign/refs/heads/main/json-schema/activecampaign-sms-ai-broadcast-update-request-schema.json",
  "title": "AIBroadcastUpdateRequest",
  "description": "AIBroadcastUpdateRequest schema from ActiveCampaign API",
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "enum": [
        "ai_index",
        "sms_index",
        "ai_builder"
      ]
    },
    "prompt": {
      "type": "string"
    },
    "tone": {
      "type": "string"
    },
    "broadcastId": {
      "type": "integer"
    }
  },
  "required": [
    "source",
    "prompt",
    "tone",
    "broadcastId"
  ]
}