hubspot_get_company
Retrieve company details from HubSpot CRM using the company ID to access specific business information and properties for sales analysis.
Instructions
Get a specific company by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | The ID of the company to retrieve | |
properties | No | List of properties to include in the results |
Input Schema (JSON Schema)
{
"properties": {
"companyId": {
"description": "The ID of the company to retrieve",
"type": "string"
},
"properties": {
"description": "List of properties to include in the results",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"companyId"
],
"type": "object"
}