crm_batch_create_contacts
Add multiple contacts to HubSpot CRM in one request, streamlining data entry and managing associations efficiently.
Instructions
Create multiple contacts 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"
},
"city": {
"type": "string"
},
"company": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"facebookfanpage": {
"type": "string"
},
"firstname": {
"type": "string"
},
"jobtitle": {
"type": "string"
},
"lastname": {
"type": "string"
},
"leadstatus": {
"enum": [
"new",
"open",
"inprogress",
"opennotcontacted",
"opencontacted",
"closedconverted",
"closednotconverted"
],
"type": "string"
},
"lifecyclestage": {
"enum": [
"subscriber",
"lead",
"marketingqualifiedlead",
"salesqualifiedlead",
"opportunity",
"customer",
"evangelist",
"other"
],
"type": "string"
},
"linkedinbio": {
"type": "string"
},
"mobilephone": {
"type": "string"
},
"phone": {
"type": "string"
},
"state": {
"type": "string"
},
"twitterhandle": {
"type": "string"
},
"website": {
"format": "uri",
"type": "string"
},
"zip": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"properties"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"inputs"
],
"type": "object"
}