update_meeting_metadata
Name: update_meeting_metadata
Description: Updates meeting engagement metadata such as agenda entries, notes, and tags, then applies validation rules before persisting changes. Use this endpoint to maintain structured meeting context and keep engagement records accurate for reporting, retrieval, and collaboration workflows.
Schema
{
"type": "object",
"properties": {
"meetingEngagementId": {
"type": "string",
"description": "The unique identifier of the meeting engagement to update metadata for. This is passed as a path parameter."
},
"MetadataType": {
"type": "string",
"enum": [
"DefaultSelection",
"Agenda",
"Notes"
],
"description": "The type of metadata to update (DefaultSelection, Agenda, or Notes)"
},
"MetadataText": {
"type": "string",
"description": "The metadata text content to apply to the meeting engagement"
}
},
"required": [
"meetingEngagementId"
]
}
{
"type": "object",
"properties": {},
"required": []
}
Updated about 7 hours ago