Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 494 Bytes

index.md

File metadata and controls

38 lines (25 loc) · 494 Bytes

Home

API documentation

Import Postman json file

Create Accounts : POST /auth/register/

{
  	"fullName": "user",
    "email": "[email protected]",
    "password": "qwerty"
}

Login : POST /auth/login/

{
	"email": "[email protected]",
	"password": "qwerty"
}

Create New Post : POST /post/new

{
  "post": "Post text"
}

Get List All Posts : GET /posts