Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions public/example/openAPISpec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,35 +277,3 @@ paths:
items:
$ref: '#/components/schemas/Participant'

/meetings/{meetingId}/chat:
post:
summary: Send chat message
description: |
Sends a real-time chat message to a meeting room. This is useful for in-meeting communication between participants.
The message is stored and can be retrieved later via the chat history endpoint.
security:
- bearerAuth: []
parameters:
- name: meetingId
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
sender_id:
type: string
message:
type: string
required:
- sender_id
- message
responses:
'200':
description: Message sent