-
Notifications
You must be signed in to change notification settings - Fork 0
/
workshop.postman_collection.json
66 lines (66 loc) · 1.14 KB
/
workshop.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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"info": {
"_postman_id": "8595704e-8998-4ac3-8238-bae43bf02808",
"name": "Workshop eLLMental",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Add Note",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"text\": \"{{text}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8080/save",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"save"
]
}
},
"response": []
},
{
"name": "Search",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8080/search?query=\"What is booster?\"&itemsLimit=3",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"search"
],
"query": [
{
"key": "query",
"value": "\"What is booster?\""
},
{
"key": "itemsLimit",
"value": "3"
}
]
}
},
"response": []
}
]
}