crm_get_company
Retrieve detailed company information, including specified properties and associations like contacts, deals, and tickets, using a company ID.
Instructions
Get a single company by ID with specific properties and associations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
associations | No | ||
companyId | Yes | ||
properties | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"associations": {
"items": {
"enum": [
"contacts",
"deals",
"tickets"
],
"type": "string"
},
"type": "array"
},
"companyId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"companyId"
],
"type": "object"
}