HubSpot · Schema

NoteUpdateRequest

Request body for updating a note

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
properties object The note properties to update
View JSON Schema on GitHub

JSON Schema

engagement-notes-note-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/engagement-notes-note-update-request-schema.json",
  "title": "NoteUpdateRequest",
  "description": "Request body for updating a note",
  "type": "object",
  "properties": {
    "properties": {
      "type": "object",
      "description": "The note properties to update",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "hs_note_body": "Updated meeting notes - client confirmed interest in premium tier."
      }
    }
  },
  "required": [
    "properties"
  ]
}