HubSpot · Schema

BatchCreateInput

Input for a batch create operation.

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
inputs array
View JSON Schema on GitHub

JSON Schema

crm-deals-api-batch-create-input-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/crm-deals-api-batch-create-input-schema.json",
  "title": "BatchCreateInput",
  "description": "Input for a batch create operation.",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "Input for creating or updating a CRM object.",
        "properties": {
          "properties": {
            "type": "object",
            "additionalProperties": {
              "type": "string"
            },
            "example": {
              "key": "value"
            }
          }
        }
      },
      "example": [
        {
          "properties": {
            "key": "value"
          }
        }
      ]
    }
  }
}