Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Mention some key characteristics of REST?
Home
APIGEE - API Services
Mention some key characteristics of REST?
+1
vote
asked
Jan 26, 2022
in
APIGEE - API Services
by
sharadyadav1986
Mention some key characteristics of REST?
rest-characteristics
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 26, 2022
by
sharadyadav1986
Some key characteristics of REST includes:
REST is stateless, therefore the SERVER has no state (or session data)
With a well-applied REST API, the server could be restarted between two calls as every data is passed to the server
Web service mostly uses POST method to make operations, whereas REST uses GET to access resources
...