Klaviyo · Schema

CatalogCategoryDeleteQueryResourceObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
id string The catalog category ID is a compound ID (string), with format: `{integration}:::{catalog}:::{external_id}`. Currently, the only supported integration type is `$custom`, and the only supported catalog
View JSON Schema on GitHub

JSON Schema

klaviyo-catalogcategorydeletequeryresourceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogCategoryDeleteQueryResourceObject",
  "title": "CatalogCategoryDeleteQueryResourceObject",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/CatalogCategoryEnum"
    },
    "id": {
      "description": "The catalog category ID is a compound ID (string), with format: `{integration}:::{catalog}:::{external_id}`. Currently, the only supported integration type is `$custom`, and the only supported catalog is `$default`.",
      "type": "string",
      "example": "$custom:::$default:::SAMPLE-DATA-CATEGORY-APPAREL"
    }
  },
  "required": [
    "type",
    "id"
  ]
}