meetings_batch_create
Generate multiple meetings in one request for efficient scheduling in HubSpot MCP. Specify details like title, start/end times, and associations to streamline CRM workflows.
Instructions
Create multiple meetings in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputs": {
"items": {
"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"
},
"type": "array"
}
},
"required": [
"inputs"
],
"type": "object"
}