October 2016
Intermediate to advanced
418 pages
9h 52m
English
As we explained in Chapter 2, Working with Class-Based Views and Hyperlinked
APIs in Django, our API can update a single field for an existing resource, and therefore, we provide an implementation for the PATCH method. For example, we can use the PATCH method to update an existing game and set the value for its played field to true. We don't want to use the PUT method because this method is meant to replace an entire game. The PATCH method is meant to apply a delta to an existing game, and therefore, it is the appropriate method to just change the value of the played field.
Now, we will compose and send an HTTP request to update an existing game, specifically, to update the value of ...