crm_get_object
Retrieve specific HubSpot CRM records by ID to access contact, company, deal, or ticket information with selected properties and associations.
Instructions
Get a single CRM object by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectType | Yes | ||
| objectId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"type": "string"
},
"type": "array"
},
"objectId": {
"type": "string"
},
"objectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"objectType",
"objectId"
],
"type": "object"
}