API Routes - nathan-mac/Feedit GitHub Wiki

Posts

  • All: GET /posts
  • One: GET /posts/:id
  • Create: POST /posts/
  • Edit: PUT /posts/:id
  • Delete: DELETE /posts/:id

Subfeedits

  • All: GET /subfeedits

Comments

  • All: GET /posts/comments
  • One: GET /posts/comments/:id
  • Create: POST /posts/comments
  • Edit: PUT /posts/comments/:id
  • Delete: DELETE /posts/comments/:id