crm_batch_create_companies
Create multiple companies in HubSpot CRM in a single request, streamlining bulk company data entry and management for improved efficiency.
Instructions
Create multiple companies in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | 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": {},
"properties": {
"address": {
"type": "string"
},
"address2": {
"type": "string"
},
"annualrevenue": {
"type": "number"
},
"city": {
"type": "string"
},
"country": {
"type": "string"
},
"description": {
"type": "string"
},
"domain": {
"type": "string"
},
"industry": {
"type": "string"
},
"lifecyclestage": {
"enum": [
"lead",
"customer",
"opportunity",
"subscriber",
"other"
],
"type": "string"
},
"name": {
"type": "string"
},
"numberofemployees": {
"type": "number"
},
"phone": {
"type": "string"
},
"state": {
"type": "string"
},
"type": {
"type": "string"
},
"website": {
"format": "uri",
"type": "string"
},
"zip": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"properties"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"inputs"
],
"type": "object"
}