Styrow.dev
Question 31 of 59

What are some key characteristics of REST?

Question

What are some key characteristics of REST?

Answer

Key characteristics of REST are likely asked in a Web API Testing interview. So please get the answer ready in your mind with these 2 ones: REST is stateless, therefore the SERVER has no status (or session data) With a well-applied REST API, the server could be restarted between two calls, since all data is transferred to the server Web service uses POST method primarily to perform operations, while REST uses GET for accessing resources.