meetings_update
Modify existing meeting details including title, description, location, timing, status, and assigned owner in HubSpot CRM.
Instructions
Update an existing meeting
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meetingId | Yes | ||
| properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"meetingId": {
"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": [
"meetingId",
"properties"
],
"type": "object"
}