What are two characteristics of REST API calls? (Choose two.)
What are two characteristics of REST API calls? (Choose two.)
One characteristic of REST API calls is that they are stateless. This means each request from client to server must contain all the information needed to understand and process the request; there is no stored context on the server between requests. Another characteristic is that they are typically implemented over HTTP, using standard HTTP methods such as GET, POST, PUT, and DELETE to perform actions. These two characteristics help ensure that REST APIs are scalable and easy to implement over the web. Therefore, the correct answers are that REST API calls are stateless and implemented over HTTP.
CD https://www.cisco.com/c/en/us/td/docs/wireless/mse/8-0/MSE_REST_API/Guide/Cisco_MSE_REST_API_Guide/REST_Introduction.pdf
why not E
this is not a defining characteristic of REST
- why not E? Parameters are not being passed via HTTP Headers GET - parameters are part of the URL POST - parameters part of the DATA payload