crm_batch_read_objects
Retrieve multiple CRM objects in bulk by specifying object type and IDs, enabling efficient data access and management within HubSpot MCP.
Instructions
Create multiple CRM objects in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
idProperty | No | ||
objectIds | Yes | ||
objectType | Yes | ||
properties | No | ||
propertiesWithHistory | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"idProperty": {
"type": "string"
},
"objectIds": {
"items": {
"type": "string"
},
"type": "array"
},
"objectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"propertiesWithHistory": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"objectType",
"objectIds"
],
"type": "object"
}