32 lines
790 B
YAML
32 lines
790 B
YAML
post:
|
|
tags:
|
|
- Conversation
|
|
operationId: conversationToggleStatus
|
|
summary: Toggle Status
|
|
description: Toggles the status of the conversation between open and resolved
|
|
parameters:
|
|
- name: id
|
|
in: path
|
|
type: number
|
|
description: ID of the conversation
|
|
required: true
|
|
- name: data
|
|
in: body
|
|
required: true
|
|
schema:
|
|
type: object
|
|
properties:
|
|
status:
|
|
type: string
|
|
enum: ["open", "resolved"]
|
|
required: true
|
|
description: The status of the conversation
|
|
responses:
|
|
200:
|
|
description: Success
|
|
schema:
|
|
$ref: '#/definitions/conversation_status_toggle'
|
|
404:
|
|
description: Conversation not found
|
|
403:
|
|
description: Access denied
|