Update a meeting
client.meeting.update(stringid, MeetingUpdateParams { fields, relationships } body, RequestOptionsoptions?): MeetingUpdateResponse { id, accessLevel, createdAt, 6 more }
POST/v1/meetings/{id}
Updates an existing meeting by ID. Only included fields and relationships are modified.
Only fields.$privacySetting and relationships.$transcript.replace are writable. Use $transcript.replace to set the meeting transcript. Clearing or removing $transcript is not supported. The response is privacy-aware and includes a read-only accessLevel. See Uploading meeting transcripts for the full file upload and transcript attachment flow.
Supports idempotency via the Idempotency-Key header.
Required scope: meetings:update
Rate limit category: Write
Parameters
id: string
Unique identifier of the meeting to update.
Returns
Update a meeting
import Lightfield from 'lightfield';
const client = new Lightfield({
apiKey: 'My API Key',
});
const meetingUpdateResponse = await client.meeting.update('id');
console.log(meetingUpdateResponse.id);{
"id": "id",
"accessLevel": "FULL",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink",
"objectType": "meeting",
"relationships": {
"foo": {
"cardinality": "cardinality",
"objectType": "objectType",
"values": [
"string"
]
}
},
"updatedAt": "updatedAt",
"externalId": "externalId"
}Returns Examples
{
"id": "id",
"accessLevel": "FULL",
"createdAt": "createdAt",
"fields": {
"foo": {
"value": "string",
"valueType": "ADDRESS"
}
},
"httpLink": "httpLink",
"objectType": "meeting",
"relationships": {
"foo": {
"cardinality": "cardinality",
"objectType": "objectType",
"values": [
"string"
]
}
},
"updatedAt": "updatedAt",
"externalId": "externalId"
}