An open API service indexing awesome lists of open source software.

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

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 |