Skip to content

Instantly share code, notes, and snippets.

@ursulacj
Created February 14, 2019 18:41
Show Gist options
  • Save ursulacj/727bfe6bd5fca72268b5fc7ba49f0651 to your computer and use it in GitHub Desktop.
Save ursulacj/727bfe6bd5fca72268b5fc7ba49f0651 to your computer and use it in GitHub Desktop.

RESTful Routing for
Related (Nested) Data Relationships

Scenario

A Post has many Comments

RESTful Routes for Performing CUD Data Operations on Comments:

HTTP Verb Path (endpoint) controller#action Purpose
POST /posts/:id/comments comments#create Create a comment for a post
PUT /comments/:id comments#update Update a comment
DELETE /comments/:id comments#delete Delete a comment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment