crm_batch_create_objects
Create multiple CRM objects such as contacts, companies, or deals in a single request, streamlining data entry and management on HubSpot MCP.
Instructions
Create multiple CRM objects in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes | ||
objectType | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputs": {
"items": {
"additionalProperties": false,
"properties": {
"associations": {
"items": {
"additionalProperties": false,
"properties": {
"to": {
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"types": {
"items": {
"additionalProperties": false,
"properties": {
"associationCategory": {
"type": "string"
},
"associationTypeId": {
"type": "number"
}
},
"required": [
"associationCategory",
"associationTypeId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"to",
"types"
],
"type": "object"
},
"type": "array"
},
"properties": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"properties"
],
"type": "object"
},
"type": "array"
},
"objectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
}
},
"required": [
"objectType",
"inputs"
],
"type": "object"
}