meetings_create
Create and schedule meetings directly in HubSpot MCP by specifying title, start and end times, location, outcome, and associations with CRM records.
Instructions
Create a new meeting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
associations | No | ||
properties | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"associations": {
"items": {
"additionalProperties": false,
"properties": {
"to": {
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"types": {
"items": {
"additionalProperties": false,
"properties": {
"associationCategory": {
"type": "string"
},
"associationTypeId": {
"type": "number"
}
},
"required": [
"associationCategory",
"associationTypeId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"to",
"types"
],
"type": "object"
},
"type": "array"
},
"properties": {
"additionalProperties": false,
"properties": {
"hs_meeting_body": {
"type": "string"
},
"hs_meeting_end_time": {
"type": "string"
},
"hs_meeting_location": {
"type": "string"
},
"hs_meeting_outcome": {
"enum": [
"SCHEDULED",
"COMPLETED",
"CANCELED"
],
"type": "string"
},
"hs_meeting_start_time": {
"type": "string"
},
"hs_meeting_title": {
"type": "string"
},
"hs_timestamp": {
"type": "string"
},
"hubspot_owner_id": {
"type": "string"
}
},
"required": [
"hs_timestamp",
"hs_meeting_title",
"hs_meeting_start_time",
"hs_meeting_end_time"
],
"type": "object"
}
},
"required": [
"properties"
],
"type": "object"
}