crm_get_company
Retrieve company details from HubSpot CRM by ID, including specific properties and associated contacts, deals, or tickets for comprehensive business data access.
Instructions
Get a single company by ID with specific properties and associations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"enum": [
"contacts",
"deals",
"tickets"
],
"type": "string"
},
"type": "array"
},
"companyId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"companyId"
],
"type": "object"
}