https://github.com/gobeam/training_session
This is example repo to push code to remote repository
https://github.com/gobeam/training_session
Last synced: 5 months ago
JSON representation
This is example repo to push code to remote repository
- Host: GitHub
- URL: https://github.com/gobeam/training_session
- Owner: gobeam
- Created: 2021-09-14T02:58:31.000Z (over 4 years ago)
- Default Branch: dev
- Last Pushed: 2021-11-19T02:41:17.000Z (about 4 years ago)
- Last Synced: 2025-02-04T10:57:16.648Z (11 months ago)
- Language: JavaScript
- Size: 1.27 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RESTful API
```json
let users = [
{
"id": 1,
"name : "Yajindra",
},
{
"id": 2,
"name : "Anup",
}
]
```
|Routes | Request Method | Description|
| ----------- | ----------- | -------- |
| /user | POST | Create a new user |
| /user | GET | Get All user |
| /user/:id | PUT/PATCH | Update user by given unique ID |
| /user/:id | GET | Get user by given unique ID |
| /user/:id | DELETE | Delete user by given unique ID |