tags: - Conversations operationId: toggle-typing-status-of-a-conversation summary: Toggle Typing Status description: Toggles the typing status for a conversation. security: - userApiKey: [] - agentBotApiKey: [] requestBody: required: true content: application/json: schema: type: object required: - typing_status properties: typing_status: type: string enum: ['on', 'off'] description: Typing status to set. example: 'on' is_private: type: boolean description: Whether the typing event is for private notes. example: false responses: '200': description: Success '401': description: Unauthorized content: application/json: schema: $ref: '#/components/schemas/bad_request_error' '404': description: Conversation not found content: application/json: schema: $ref: '#/components/schemas/bad_request_error'