Building RESTful Python Web Services by Hillar Gaston C

Building RESTful Python Web Services by Hillar Gaston C

Author:Hillar, Gaston C.
Language: eng
Format: epub
Publisher: Packt Publishing
Published: 2016-10-27T04:00:00+00:00


Tip

The PATCH method will allow us to easily update two fields for a message: the integer counter, that indicates the times the message has been printed and the bool value, that specifies whether the message was printed at least once.

We have to compose and send an HTTP request with the DELETE HTTP verb and the http://localhost:5000/api/messages/{id} request URL to remove the message whose id matches the specified numeric value in the place where {id} is written. For example, if we use the request URL http://localhost:5000/api/messages/15, the server will delete the message whose id matches 15. As a result of the request, the server will retrieve a message with the specified id from the dictionary. If a message is found, the server will request the dictionary to delete the entry associated with this message object and return a 204 No Content status code. If no message matches the specified id, the server will return a 404 Not Found status:

DELETE http://localhost:5000/api/messages/{id}



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.