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
| http post :
|
| http://localhost:8080/api/interview_record/create
|
|
| interviewDate: 預計約訪日期
| content : 紀錄內容
| appointmentId: 預約單id
|
|
| request body :
|
| {
| "content":"test record content",
| "interviewDate":"2021-01-01T08:00:00.000",
| "appointmentId": 385
| }
|
|
| response body :
|
| {
| "id": 5,
| "content": "test record content",
| "interviewDate": "2021-01-01T08:00:00.000+00:00",
| "appointmentId": 385
| }
|
|