crm_create_company_property
Add custom company properties in HubSpot CRM by defining name, label, type, field type, group name, and additional attributes for tailored data management.
Instructions
Create a new company property
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
displayOrder | No | ||
fieldType | Yes | ||
formField | No | ||
groupName | Yes | ||
hasUniqueValue | No | ||
hidden | No | ||
label | Yes | ||
name | Yes | ||
options | No | ||
type | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"displayOrder": {
"type": "number"
},
"fieldType": {
"enum": [
"text",
"textarea",
"select",
"radio",
"checkbox",
"number",
"date",
"file"
],
"type": "string"
},
"formField": {
"type": "boolean"
},
"groupName": {
"type": "string"
},
"hasUniqueValue": {
"type": "boolean"
},
"hidden": {
"type": "boolean"
},
"label": {
"type": "string"
},
"name": {
"type": "string"
},
"options": {
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"displayOrder": {
"type": "number"
},
"hidden": {
"type": "boolean"
},
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"label",
"value"
],
"type": "object"
},
"type": "array"
},
"type": {
"enum": [
"string",
"number",
"date",
"datetime",
"enumeration",
"bool"
],
"type": "string"
}
},
"required": [
"name",
"label",
"type",
"fieldType",
"groupName"
],
"type": "object"
}