Klaviyo · Schema

ProfileSuppressionCreateQueryResourceObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
attributes object
View JSON Schema on GitHub

JSON Schema

klaviyo-profilesuppressioncreatequeryresourceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfileSuppressionCreateQueryResourceObject",
  "title": "ProfileSuppressionCreateQueryResourceObject",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/ProfileEnum"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "email": {
          "description": "The email of the profile to suppress.",
          "type": "string",
          "example": "[email protected]"
        }
      },
      "required": [
        "email"
      ]
    }
  },
  "required": [
    "type",
    "attributes"
  ]
}