Skip to content

followdeKlerk/sample-restful-api

Repository files navigation

RESTful API with Spring Boot, JPA, WEB and Hibernate


Postman

Create User REST API

https://localhost:8080/api/users

HTTP Method: POST

Request Body:

{
    "firstName": "nathan",
    "lastName":"de klerk",
    "email": "[email protected]"
}

Get User REST API

https://localhost:8080/api/users/1

HTTP Method: GET


Update User REST API

https://localhost:8080/api/users/1

HTTP Method: PUT

Request Body:

{
    "firstName": "nathan",
    "lastName":"de klerk",
    "email": "[email protected]"
}

Get All Users REST API

https://localhost:8080/api/users

HTTP Method: GET


About

RESTful API with Spring Boot, JPA, WEB and Hibernate

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages