HubSpot · JSON Structure

Engagement Notes Batch Update Input Structure

Input for updating a single item in a batch

Type: object Properties: 2 Required: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

BatchUpdateInput is a JSON Structure definition published by HubSpot, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id properties

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/engagement-notes-batch-update-input-structure.json",
  "name": "BatchUpdateInput",
  "description": "Input for updating a single item in a batch",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The note identifier",
      "example": "1024"
    },
    "properties": {
      "type": "object",
      "description": "The properties to update",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "key": "value"
      }
    }
  },
  "required": [
    "id",
    "properties"
  ]
}