getCompanyById
Retrieve detailed company information by ID from Teamwork MCP. Includes options for custom fields, full profiles, and task/project stats to enhance data analysis.
Instructions
Get a specific company by ID. Retrieves detailed information about a company identified by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | The ID of the company to retrieve | |
fullProfile | No | Include full profile information | |
getStats | No | Include stats of company tasks and projects | |
includeCustomFields | No | Include custom fields in the response |
Input Schema (JSON Schema)
{
"properties": {
"companyId": {
"description": "The ID of the company to retrieve",
"type": "integer"
},
"fullProfile": {
"description": "Include full profile information",
"type": "boolean"
},
"getStats": {
"description": "Include stats of company tasks and projects",
"type": "boolean"
},
"includeCustomFields": {
"description": "Include custom fields in the response",
"type": "boolean"
}
},
"required": [
"companyId"
],
"type": "object"
}