DocsAPI ReferenceUpdate meeting metadata
PATCH
/api/v1/meetings/{meeting_id}Updates user-editable fields on a meeting: `name`, `participants`, `languages`, and `notes`. At least one field must be non-null.
Path Parameters
meeting_idstringrequirede.g. "99"Internal meeting UUID.
Headers
X-API-KeystringrequiredYour workspace API key.
Content-TypestringrequiredMust be `application/json`.
Request Body
application/json
namestringMeeting name/title.
Example: "Q3 Planning Call"
participantsarrayReplace the participant list.
Example: ["Alice","Bob","Carol"]
languagesarrayReplace the detected languages list.
Example: ["en","fr"]
notesstringMeeting notes or description.
Example: "Follow up on items 3 and 7."
Responses
200Updated meeting object.
400No valid fields provided.
404Meeting not found.
Try it live
API Configurationglobal · all endpoints
PATCH
https://api.serveka.com/api/v1/meetings/99Path Parameters
Request Body
curl -X PATCH 'https://api.serveka.com/api/v1/meetings/99' \
-H "Content-Type: application/json"\
-d '{
"name": "Q3 Planning Call",
"participants": [
"Alice",
"Bob",
"Carol"
],
"languages": [
"en",
"fr"
],
"notes": "Follow up on items 3 and 7."
}'