Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 457 Bytes

File metadata and controls

22 lines (20 loc) · 457 Bytes

Post system

API for creating, deleting and receiving posts, which will be developed in the future.

Create post

POST http://localhost:8080/api/post
{
    "title": "POST TITLE",
    "description": "POST DESCRIPTION", 
    "author": "POST AUTHOR"
}

Show all posts

GET http://localhost:8080/api/post

Delete post

DELETE http://localhost:8080/api/post?title=POST TITLE

Thank you