Update a meeting
client.Meeting.Update(ctx, id, body) (*MeetingUpdateResponse, error)
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
Update a meeting
package main
import (
"context"
"fmt"
"github.com/Lightfld/lightfield-go"
"github.com/Lightfld/lightfield-go/option"
)
func main() {
client := githubcomlightfldlightfieldgo.NewClient(
option.WithAPIKey("My API Key"),
)
meetingUpdateResponse, err := client.Meeting.Update(
context.TODO(),
"id",
githubcomlightfldlightfieldgo.MeetingUpdateParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", 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"
}