What is the primary HTTP method used to retrieve data in a RESTful API developed with CodeIgniter?

  • DELETE
  • GET
  • POST
  • PUT
In a RESTful API, the primary HTTP method used to retrieve data is GET. This method is commonly used for reading resources and does not modify the server's state. In CodeIgniter, you would design your API endpoints to respond to GET requests for data retrieval.
Add your answer
Loading...

Leave a comment

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