api-endpoints.md
May 26, 2017 ยท View on GitHub
#API Endpoints
##HTML API
Root
GET /- Loads React web app
##JSON API
Users
GET /api/usersGET /api/user/:idPOST /api/users
Session
POST /api/sessionDELETE /api/session
Photos
-
GET /api/photos -
GET /api/photo/:id -
PATCH /api/photo/:id -
GET /api/user/:id/photos -
POST /api/user/:id/photos
Comments
-
PATCH /api/comment/:id -
DELETE /api/comment/:id -
GET /api/photo/:id/comments -
POST /api/photo/:id/comments
Likes
POST /api/photo/:id/likesDELETE /api/like/:id
Followings
GET /api/user/:id/followsGET /api/user/:id/followersPOST /api/user/:id/followsDELETE /api/follow/:id