Google News
logo
Rest API - Interview Questions
What is a URI in REST?
URI stands for uniform resource identifier. In REST, a URI is a string that identifies a resource on a web server. Each resource has its own unique URI which, when included in an HTTP request, allows clients to target that resource and perform actions on it. The process of targeting a resource with its URI is called “addressing.”
 
The format of a URI is as follows :
<protocol>://<service-name>/<ResourceType>/<ResourceID>
Advertisement