meetings_get
Retrieve specific meeting details from HubSpot CRM by providing the meeting ID, including associated contacts, companies, and deals for comprehensive meeting management.
Instructions
Get details of a specific meeting
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meetingId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"enum": [
"contacts",
"companies",
"deals"
],
"type": "string"
},
"type": "array"
},
"meetingId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"meetingId"
],
"type": "object"
}