メインコンテンツまでスキップ
翻訳未対応
まだ日本語に翻訳されていません。サポートが必要な場合は、クリニックのKOS担当者にお問い合わせください。

스케줄 상담 정보 수정

POST 

/schedule/open/v1/commands/update-schedule-consultation-info

스케줄의 상담 정보를 수정합니다.

  • 수정할 필드만 전달합니다. 전달하지 않은 필드는 변경되지 않습니다.

에러 응답

scheduleId에 해당하는 스케줄이 없을 경우
{
"status": 400,
"message": "InvalidRequestException",
"className": "InvalidRequestException",
"errorProperties": [{"key": "scheduleId", "reason": "NotFound"}]
}

Request

### Content-Type별 요청의 JSON Schema

{
"application/json": {
"schema": {
"required": [
"scheduleId"
],
"type": "object",
"properties": {
"scheduleId": {
"type": "string",
"description": "수정할 스케줄 ID",
"format": "uuid"
},
"consultationMemo": {
"type": "string",
"description": "상담 메모. 빈 문자열(`""`)로 전달하면 메모가 삭제됩니다."
}
},
"description": "상담 정보 수정 요청. 수정할 필드만 전달하면 됩니다. 전달하지 않은 필드는 변경되지 않습니다.",
"title": "protos.open.OpenUpdateScheduleConsultationInfoCommand"
}
}
}

Responses

OK

### Status Code별 응답의 JSON Schema

{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {},
"title": "protos.Empty"
}
}
}
}
}