-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.http
More file actions
47 lines (39 loc) · 923 Bytes
/
test.http
File metadata and controls
47 lines (39 loc) · 923 Bytes
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
###
POST http://localhost:8080/api/notifications/send
Content-Type: application/json
{
"recipientId": "user124",
"groupName": null,
"interest": null,
"title": "안녕하세요 user124님",
"content": "반갑습니다.",
"type": "INFO",
"priority": 1,
"expiresIn": 5
}
###
POST http://localhost:8080/api/notifications/send
Content-Type: application/json
{
"recipientId": null,
"groupName": null,
"interest": "security",
"title": "안녕하세요 security에 관심있는 분들",
"content": "반갑습니다.",
"type": "INFO",
"priority": 1,
"expiresIn": 5
}
###
POST http://localhost:8080/api/notifications/send
Content-Type: application/json
{
"recipientId": null,
"groupName": "development",
"interest": null,
"title": "안녕하세요 development 팀!",
"content": "반갑습니다.",
"type": "INFO",
"priority": 1,
"expiresIn": 5
}