保誠-保戶業務員媒合平台
wayne
2022-01-26 6fa4bba623713c396432ba8b863846883d6a1906
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
http get:
 
http://localhost:8080/api/personal_notification/getMyPersonalNotification
 
title: 標題
content: 通知內容
notificationType: ACTIVITY(個人活動通知)、SYSTEM(系統通知)
ownerRole: CUSTOMER(客戶)、CONSULTANT(顧問)
ownerId: 登入者id
readDate: 已讀時間
 
request body :
 
[
    {
        "id": 1,
        "title": "title test",
        "content": "content test",
        "notificationType": "ACTIVITY",
        "ownerRole": "CONSULTANT",
        "ownerId": 11,
        "createdDate": "2022-01-20T10:53:53.022Z",
        "readDate": null
    },
    {
        "id": 2,
        "title": "title test",
        "content": "content test",
        "notificationType": "ACTIVITY",
        "ownerRole": "CONSULTANT",
        "ownerId": 11,
        "createdDate": "2022-01-20T10:59:17.242Z",
        "readDate": null
    }
]