Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typo in httpmethods.md #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/introduction/httpmethods.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Below is a table summarizing recommended return values of the primary HTTP metho

Below is a more-detailed discussion of the main HTTP methods.
## POST
The POST verb is most-often utilized to *create* new a resource. In particular, it's used to create subordinate resources. That is, subordinate to some other (e.g. parent) resource. In other words, when creating a new resource, POST to the parent and the service takes care of associating the new resource with the parent, assigning an ID (new resource URI), etc.
The POST verb is most-often utilized to *create* a new resource. In particular, it's used to create subordinate resources. That is, subordinate to some other (e.g. parent) resource. In other words, when creating a new resource, POST to the parent and the service takes care of associating the new resource with the parent, assigning an ID (new resource URI), etc.

On successful creation, return HTTP status 201, returning a Location header with a link to the newly-created resource with the 201 HTTP status.

Expand Down Expand Up @@ -86,4 +86,4 @@ __Examples:__

----
* Previous: [REST Quick Tips](/introduction/restquicktips.html)
* Next: [Resource Naming](/introduction/resourcenaming.html)
* Next: [Resource Naming](/introduction/resourcenaming.html)