ENAUTO Exam QuestionsBrowse all questions from this exam

ENAUTO Exam - Question 46


What are two characteristics of REST API calls? (Choose two.)

Show Answer
Correct Answer: CD

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.

Discussion

3 comments
Sign in to comment
t567
Jan 15, 2023

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

CTshirt
Feb 27, 2024

why not E

francy5663
Feb 9, 2025

this is not a defining characteristic of REST

fuhgeddabouditOptions: CD
Aug 12, 2024

- 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