Klaviyo · Schema

MobilePushMessageSilentDefinitionCreate

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
channel string
kv_pairs object The key-value pairs to be sent with the push notification
notification_type string The type of notification to send
View JSON Schema on GitHub

JSON Schema

klaviyo-mobilepushmessagesilentdefinitioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MobilePushMessageSilentDefinitionCreate",
  "title": "MobilePushMessageSilentDefinitionCreate",
  "type": "object",
  "properties": {
    "channel": {
      "type": "string",
      "enum": [
        "mobile_push"
      ]
    },
    "kv_pairs": {
      "description": "The key-value pairs to be sent with the push notification",
      "type": "object",
      "nullable": true
    },
    "notification_type": {
      "description": "The type of notification to send",
      "type": "string",
      "example": "silent",
      "default": "silent",
      "enum": [
        "silent"
      ]
    }
  },
  "required": [
    "channel"
  ]
}