-
PUT and PATCH are HTTP verbs and they both relate to updating a resource. The main difference in PUT and PATCH method is the PUT method uses the request URI to supply a modified version of the requested resource which replaces the original version of the resource. PATCH on the other hand supplies a set of instructions to modify the resource.
2. Provide links to 3 services or tools that allow you to “mock” an API for development like json-server
-
Mock server https://www.mock-server.com/
-
Postman https://www.postman.com/
-
Insomnia https://insomnia.rest/



