HubSpot · JSON Structure

Hubspot Engagement Notes Batch Create Notes Request Structure

Request body for batch creating notes

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

BatchCreateNotesRequest is a JSON Structure definition published by HubSpot, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

inputs

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Request body for batch creating notes",
  "name": "BatchCreateNotesRequest",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "Array of notes to create",
      "items": {
        "type": "object",
        "description": "Request body for creating a note",
        "properties": {
          "properties": {
            "type": "object",
            "description": "The note properties to set"
          },
          "associations": {
            "type": "array",
            "description": "Associations to create with other objects",
            "items": {
              "type": "object",
              "description": "Association to create with another object",
              "properties": {
                "to": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "object"
                    }
                  },
                  "required": [
                    "id"
                  ]
                },
                "types": {
                  "type": "array",
                  "description": "The association types",
                  "items": {
                    "type": "object"
                  }
                }
              },
              "required": [
                "to",
                "types"
              ]
            }
          }
        },
        "required": [
          "properties"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}