Create a meeting
client.meeting.create(MeetingCreateParams { fields, autoCreateRecords, relationships } body, RequestOptionsoptions?): MeetingCreateResponse { id, accessLevel, createdAt, 6 more }
POST/v1/meetings
Creates a new meeting record. This endpoint only supports creation of meetings in the past. The $title, $startDate, and $endDate fields are required. Only the $transcript relationship is writable on create; all other meeting relationships are system-managed. 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:create
Rate limit category: Write
Parameters
Returns
Create a meeting
import Lightfield from 'lightfield';
const client = new Lightfield({
apiKey: 'My API Key',
});
const meetingCreateResponse = await client.meeting.create({
fields: {
$endDate: '$endDate',
$startDate: '$startDate',
$title: '$title',
},
});
console.log(meetingCreateResponse.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"
}