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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| http get :
|
| http://localhost:8080/api/appointment/getDetail/{appointmentId}
|
|
| appointmentNoticeLogs: 預約單發送通知的歷程
|
|
| response body:
| [ {
| "id" : 385,
| "phone" : "0911223344",
| "email" : "SDD",
| "contactType" : "phone",
| "gender" : "female",
| "age" : "21-30",
| "job" : "內勤",
| "requirement" : "健康與保障",
| "communicateStatus" : "contacted",
| "hopeContactTime" : "'星期一,星期二,星期三,星期四,星期五,星期六,星期日、9:00~12:00,12:00~14:00,14:00~18:00,18:00~21:00'",
| "otherRequirement" : null,
| "appointmentDate" : "2021-12-16T07:11:05.400Z",
| "lastModifiedDate" : "2021-12-28T07:16:37.004Z",
| "agentNo" : "A568420",
| "customerId" : 139,
| "name" : "Angula-test",
| "consultantViewTime" : "2021-12-27T02:02:18.711Z",
| "consultantReadTime" : "2021-12-28T07:16:01.295Z",
| "contactTime" : "2021-12-28T07:16:37.004Z",
| "satisfactionScore" : null,
| "appointmentMemoList" : [ ],
| "interviewRecordDTOs" : [ ],
| "appointmentNoticeLogs" : [ {
| "id" : 1,
| "phone" : "0912345678",
| "email" : "pollex@gmail.com",
| "appointmentId" : 385,
| "content" : "notice customer invterview time",
| "createdDate" : "2022-01-11T08:54:35.651Z"
| }, {
| "id" : 2,
| "phone" : "0912345678",
| "email" : "pollex@gmail.com",
| "appointmentId" : 385,
| "content" : "notice customer invterview time",
| "createdDate" : "2022-01-11T08:57:23.133Z"
| } ]
| } ]
|
|