-
User Register (POST) : http://localhost:5000/user/register
-
User login (POST) : http://localhost:5000/user/login
-
User Profile (GET) : http://localhost:5000/user/profile
-
Get All Users (GET) : http://localhost:5000/user/AllUser
-
Get Single User By Id (GET) : http://localhost:5000/user/:id
-
Update a User By Id (GET) : http://localhost:5000/user/:id
-
Delete a User By Id (GET) : http://localhost:5000/user/:id
-
Search a User By username (POST) : http://localhost:5000/user/:username
-
Create new Post (POST) : http://localhost:5000/post/AddPost
-
Get All Post (GET) : http://localhost:5000/post/AllPost
-
Get Single Post By Id (GET) : http://localhost:5000/post/:id
-
Update a Post By Id (GET) : http://localhost:5000/post/:id
-
Delete a Post By Id (GET) : http://localhost:5000/post/:id
-
Create new Comment (POST) : http://localhost:5000/comment/AddComment/:PostId
-
Get All Comments (GET) : http://localhost:5000/comment/AllComment
-
Get Single Comment By Id (GET) : http://localhost:5000/comment/:id
-
Update a Comment By Id (GET) : http://localhost:5000/comment/:id
-
Delete a Comment By Id (GET) : http://localhost:5000/comment/:id