1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| http post :
|
| http://localhost:8080/api/interview_record/update
|
|
| id : interviewRecord id
| content : 約訪紀錄內容
| interviewDate: 預計約訪時間
| appointmentId: 預約單id
|
|
|
| request body :
|
| {
| "id":5,
| "content":"test record content2",
| "interviewDate":"2021-01-01T08:00:00.000",
| "appointmentId": 385
| }
|
|
|
| response body :
|
| {
| "id": 5,
| "content": "test record content2",
| "interviewDate": "2021-01-01T08:00:00.000+00:00",
| "appointmentId": 385
| }
|
|