HubSpot · Schema

BatchReadInput

Input for batch read operations

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
inputs array Array of author IDs to retrieve
View JSON Schema on GitHub

JSON Schema

hubspot-authors-batch-read-input-schema.json Raw ↑
{
  "type": "object",
  "description": "Input for batch read operations",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "Array of author IDs to retrieve",
      "example": [
        {
          "id": "500123"
        }
      ],
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID of the author to read"
          }
        },
        "required": [
          "id"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BatchReadInput"
}