crm_update_company
Modify and validate company details in HubSpot CRM, including name, domain, industry, and contact information, to ensure accurate and up-to-date records.
Instructions
Update an existing company with validated properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | ||
properties | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"companyId": {
"type": "string"
},
"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": [
"companyId",
"properties"
],
"type": "object"
}