In a RESTful API, the _____ HTTP method is used to read a specific resource.

  • GET
  • POST
  • PUT
  • DELETE
In a RESTful API, the GET HTTP method is used to read a specific resource. This is a safe and idempotent operation, meaning it should not modify the resource and can be called multiple times without changing the resource's state. When a client sends a GET request to a resource's URL, the server responds with the representation of that resource, typically in the form of JSON or XML data.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *