HubSpot · Schema

BatchCreateNotesRequest

Request body for batch creating notes

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
inputs array Array of notes to create
View JSON Schema on GitHub

JSON Schema

engagement-notes-batch-create-notes-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-batch-create-notes-request-schema.json",
  "title": "BatchCreateNotesRequest",
  "description": "Request body for batch creating notes",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "Array of notes to create",
      "items": {
        "type": "object",
        "description": "Request body for creating a note",
        "required": [
          "properties"
        ],
        "properties": {
          "properties": {
            "type": "object",
            "description": "The note properties to set",
            "additionalProperties": {
              "type": "string"
            },
            "example": {
              "hs_note_body": "Met with client to discuss Q1 goals. They are interested in expanding their subscription.",
              "hs_timestamp": "2024-01-15T10:30:00.000Z",
              "hubspot_owner_id": "12345"
            }
          },
          "associations": {
            "type": "array",
            "description": "Associations to create with other objects",
            "items": {
              "$ref": "#/components/schemas/AssociationInput"
            },
            "example": [
              {
                "to": {
                  "id": {}
                },
                "types": [
                  {}
                ]
              }
            ]
          }
        }
      },
      "maxItems": 100,
      "example": [
        {
          "properties": {
            "hs_note_body": "Met with client to discuss Q1 goals. They are interested in expanding their subscription.",
            "hs_timestamp": "2024-01-15T10:30:00.000Z",
            "hubspot_owner_id": "12345"
          },
          "associations": [
            {
              "to": {
                "id": {}
              },
              "types": [
                {}
              ]
            }
          ]
        }
      ]
    }
  },
  "required": [
    "inputs"
  ]
}