Klaviyo · Schema

TagGroupUpdateQueryResourceObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
id string The Tag Group ID
attributes object
View JSON Schema on GitHub

JSON Schema

klaviyo-taggroupupdatequeryresourceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagGroupUpdateQueryResourceObject",
  "title": "TagGroupUpdateQueryResourceObject",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/TagGroupEnum"
    },
    "id": {
      "description": "The Tag Group ID",
      "type": "string",
      "example": "zyxw9876-vu54-ts32-rq10-zyxwvu654321"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "name": {
          "description": "The Tag Group name",
          "type": "string",
          "example": "My Tag Group"
        },
        "return_fields": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "nullable": true
        }
      },
      "required": [
        "name"
      ]
    }
  },
  "required": [
    "type",
    "id",
    "attributes"
  ]
}