Klaviyo · Schema

SMSMessageDefinitionCreate

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
channel string
content object Additional attributes relating to the content of the message
render_options object Additional options for rendering the message
View JSON Schema on GitHub

JSON Schema

klaviyo-smsmessagedefinitioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SMSMessageDefinitionCreate",
  "title": "SMSMessageDefinitionCreate",
  "type": "object",
  "properties": {
    "channel": {
      "type": "string",
      "enum": [
        "sms"
      ]
    },
    "content": {
      "$ref": "#/components/schemas/SMSContentCreate",
      "description": "Additional attributes relating to the content of the message",
      "nullable": true
    },
    "render_options": {
      "description": "Additional options for rendering the message",
      "$ref": "#/components/schemas/RenderOptions",
      "nullable": true
    }
  },
  "required": [
    "channel"
  ]
}