What is statelessness in RESTful Webservices?

Technology CommunityCategory: API DesignWhat is statelessness in RESTful Webservices?
VietMX Staff asked 3 years ago

As per REST architecture, a RESTful web service should not keep a client state on server. This restriction is called statelessness. It is responsibility of the client to pass its context to server and then server can store this context to process client’s further request. For example, session maintained by server is identified by session identifier passed by the client.