What are the Characteristics of REST?

Here, are the two characteristics of REST.

  • REST is stateless. With the use of the REST API the server has no status, we can restart the server between two calls, inspite of all the data is transferred to the server.
  • Web Services uses POST method to perform operations, while REST uses GET method to access the resources.