Meeting Session Artifacts
Create a meeting session artifact
Requests asynchronous generation of one summary or action_items artifact. Each type requires its own request. Generation requires transcript content and configured inference and currently reads at most the first 10,000 segments, so exceptionally long transcripts may produce incomplete artifacts or fail model limits.
post/meeting_sessions/{id}/artifacts
Path parameters
idstring required
Example:mtgsess_a1b2c3d4-e5f6-7890-abcd-ef1234567890
Unique identifier for the meeting session.
Request body
Response
Artifact creation accepted and is being processed asynchronously.
Example response
{
"data": {
"content": null,
"created_at": "2025-01-15T10:30:00Z",
"failure_reason": null,
"id": "mtgart_550e8400-e29b-41d4-a716-446655440000",
"model_provenance": null,
"session_id": "mtgsess_550e8400-e29b-41d4-a716-446655440001",
"status": "pending",
"type": "action_items",
"updated_at": "2025-01-15T10:30:00Z"
}
}