Klaviyo · Schema

MobilePushContentUpdate

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
title string The title of the message
body string The message body
dynamic_image string The dynamic image to be used in the push notification
action_buttons array Action buttons for the push notification (max 3, positions 0-indexed with no gaps)
View JSON Schema on GitHub

JSON Schema

klaviyo-mobilepushcontentupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MobilePushContentUpdate",
  "title": "MobilePushContentUpdate",
  "type": "object",
  "properties": {
    "title": {
      "description": "The title of the message",
      "type": "string",
      "nullable": true
    },
    "body": {
      "description": "The message body",
      "type": "string",
      "example": "My preview push notification",
      "nullable": true
    },
    "dynamic_image": {
      "description": "The dynamic image to be used in the push notification",
      "type": "string",
      "nullable": true
    },
    "action_buttons": {
      "description": "Action buttons for the push notification (max 3, positions 0-indexed with no gaps)",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PushActionButtonDefinition"
      },
      "nullable": true
    }
  }
}