-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRust-Workshop.postman_collection.json
75 lines (75 loc) · 1.5 KB
/
Rust-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
67
68
69
70
71
72
73
74
75
{
"info": {
"_postman_id": "a1257074-77cb-4b40-a76e-f346ea8eca2e",
"name": "Rust-Workshop",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "21099264",
"_collection_link": "https://warped-sunset-527462.postman.co/workspace/New-Team-Workspace~dc9166b2-2433-4dee-a58a-944112045fc7/collection/21099264-a1257074-77cb-4b40-a76e-f346ea8eca2e?action=share&source=collection_link&creator=21099264"
},
"item": [
{
"name": "Get /books",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "localhost:8080/books",
"host": [
"localhost"
],
"port": "8080",
"path": [
"books"
]
}
},
"response": []
},
{
"name": "Get specific book",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "localhost:8080/books/1",
"host": [
"localhost"
],
"port": "8080",
"path": [
"books",
"1"
]
}
},
"response": []
},
{
"name": "Neues Buch hinzufügen",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"title\" : \"Mathe für Dummies\",\r\n \"author\" : \"Daniel Jung\",\r\n \"year\" : 2009\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:8080/books",
"host": [
"localhost"
],
"port": "8080",
"path": [
"books"
]
}
},
"response": []
}
]
}