meetings_batch_update
Update multiple HubSpot meetings simultaneously by modifying titles, descriptions, locations, times, outcomes, or owners in a single batch operation.
Instructions
Update multiple meetings in a single request
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inputs | Yes |
Input Schema (JSON Schema)
{
"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"
}