Klaviyo · Schema

ResendOptInCode

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
id string Not allowed on create.
submit boolean
type string
properties object
View JSON Schema on GitHub

JSON Schema

klaviyo-resendoptincode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResendOptInCode",
  "title": "ResendOptInCode",
  "type": "object",
  "properties": {
    "id": {
      "description": "Not allowed on create.",
      "type": "string",
      "nullable": true
    },
    "submit": {
      "type": "boolean",
      "default": false,
      "enum": [
        false
      ]
    },
    "type": {
      "type": "string",
      "enum": [
        "resend_opt_in_code"
      ]
    },
    "properties": {
      "enum": [
        null
      ]
    }
  },
  "required": [
    "type"
  ]
}