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

authors-api-batch-read-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/authors-api-batch-read-input-schema.json",
  "title": "BatchReadInput",
  "description": "Input for batch read operations",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID of the author to read"
          }
        },
        "required": [
          "id"
        ]
      },
      "description": "Array of author IDs to retrieve",
      "example": [
        {
          "id": "500123"
        }
      ]
    }
  },
  "required": [
    "inputs"
  ]
}