- Create a new endpoint to fetch a single conversation in client apis - Create a new endpoint to resolve a single conversation in client apis - Update swagger API definition to include missing endpoints Fixes: #6329 Co-authored-by: Cristian Duta <Cristian.Duta@ti8m.ch>
19 lines
442 B
YAML
19 lines
442 B
YAML
tags:
|
|
- Conversations API
|
|
operationId: toggle-typing-status
|
|
summary: Toggle typing status
|
|
description: Toggles the typing status in a conversation
|
|
parameters:
|
|
- name: typing_status
|
|
in: query
|
|
required: true
|
|
type: string
|
|
description: Typing status, either 'on' or 'off'
|
|
responses:
|
|
200:
|
|
description: Typing status toggled successfully
|
|
401:
|
|
description: Unauthorized
|
|
404:
|
|
description: Conversation not found
|