You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 1, 2017. It is now read-only.
Copy file name to clipboardExpand all lines: content/v3.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -191,7 +191,7 @@ Verb | Description
191
191
-----|-----------
192
192
`HEAD` | Can be issued against any resource to get just the HTTP header info.
193
193
`GET` | Used for retrieving resources.
194
-
`POST` | Used for creating resources, or performing custom actions (such as merging a pull request).
194
+
`POST` | Used for creating resources.
195
195
`PATCH` | Used for updating resources with partial JSON data. For instance, an Issue resource has`title` and`body` attributes. A PATCH request may accept one or more of the attributes to update the resource. PATCH is a relatively new and uncommon HTTP verb, so resource endpoints also accept`POST` requests.
196
196
`PUT` | Used for replacing resources or collections. For`PUT` requests with no`body` attribute, be sure to set the`Content-Length` header to zero.