Klaviyo · Schema

PushUnsubscriptionParameters

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
marketing object The parameters to unsubscribe from marketing on the "Push" channel.
tokens array A list of push tokens to unsubscribe/remove.
View JSON Schema on GitHub

JSON Schema

klaviyo-pushunsubscriptionparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PushUnsubscriptionParameters",
  "title": "PushUnsubscriptionParameters",
  "type": "object",
  "properties": {
    "marketing": {
      "description": "The parameters to unsubscribe from marketing on the \"Push\" channel.",
      "$ref": "#/components/schemas/UnsubscriptionParameters"
    },
    "tokens": {
      "description": "A list of push tokens to unsubscribe/remove.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PushTokenEntry"
      }
    }
  },
  "required": [
    "marketing",
    "tokens"
  ]
}