-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.http
56 lines (41 loc) · 805 Bytes
/
.http
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
@host=http://localhost:3000
### GET /books
GET {{host}}/books
### Get existing book
GET {{host}}/books/3
### Get nonexistent book
GET {{host}}/books/18
### Add a new book
POST {{host}}/books/
Content-Type: application/json
{
"title": "New Book"
}
### Incorrectly a new book
POST {{host}}/books/
Content-Type: application/json
{
"titl": "Wrong New Book"
}
### Update book
PUT {{host}}/books/3
Content-Type: application/json
{
"title": "Updated Book"
}
### Update nonexistent book
PUT {{host}}/books/18
Content-Type: application/json
{
"title": "Wrong Updated Book"
}
### Incorrectly update book
PUT {{host}}/books/3
Content-Type: application/json
{
"tile": "Wrong Updated Book"
}
### Delete existing book
DELETE {{host}}/books/9
### Delete nonexistent book
DELETE {{host}}/books/18