You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,24 @@ Fetch a gopher by ID
33
33
GET /gophers/{gopher_id}
34
34
```
35
35
36
+
Add a gopher
37
+
38
+
```
39
+
POST /gophers
40
+
```
41
+
42
+
Modify a gopher
43
+
```
44
+
PUT /gophers/{gopher_id}
45
+
```
46
+
47
+
Remove a gopher
48
+
```
49
+
DELETE /gophers/{gopher_id}
50
+
```
51
+
52
+
You can import the Postman collection into `api/GopherApi.postman_collection`
53
+
36
54
## Contributing
37
55
If you think that you can improve with new endpoints, and functionallities the API feel free to contribute with this project with fork this repo and send your Pull Request.
0 commit comments