-
Notifications
You must be signed in to change notification settings - Fork 54
/
jetty-http2.postman_collection.json
53 lines (53 loc) · 1.15 KB
/
jetty-http2.postman_collection.json
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
49
50
51
52
53
{
"variables": [],
"info": {
"name": "jetty-http2",
"_postman_id": "e3a5ba5f-dec0-70dd-d3af-5e2bed34d064",
"description": "",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
{
"name": "GET group1",
"request": {
"url": "http://localhost:8080/data/sync/group1",
"method": "GET",
"header": [],
"body": {},
"description": ""
},
"response": []
},
{
"name": "DELETE group1",
"request": {
"url": "http://localhost:8080/data/sync/group1",
"method": "DELETE",
"header": [],
"body": {},
"description": ""
},
"response": []
},
{
"name": "POST message",
"request": {
"url": "http://localhost:8080/data/sync",
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"description": ""
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"id\": {\n\t\t\"timeStamp\": 1234,\n\t\t\"conversationId\": {\n\t\t\t\"userId\": \"juraj\",\n\t\t\t\"groupId\": \"group1\"\n\t\t}\n\t},\n\t\"message\": \"hello message 01\"\n}"
},
"description": ""
},
"response": []
}
]
}