crm_batch_create_objects
Create multiple CRM objects in a single request to efficiently manage contacts, companies, deals, and other HubSpot data with batch processing capabilities.
Instructions
Create multiple CRM objects in a single request
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectType | Yes | ||
| inputs | Yes |
Input Schema (JSON Schema)
{
"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"
}