meetings_batch_update
Update multiple meetings simultaneously in HubSpot MCP by modifying titles, locations, times, outcomes, and associated owners in a single request.
Instructions
Update 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": {
"id": {
"type": "string"
},
"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"
},
"hubspot_owner_id": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"id",
"properties"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"inputs"
],
"type": "object"
}