I’m new to REST and I’ve observed that in some RESTful services they use different resource URI for update/get/delete and Create. Such as
- Create – using /resources with POST method (observe plural) at some places using /resource (singular)
- Update – using /resource/123 with PUT method
- Get – Using /resource/123 with GET method
I’m little bit confused about this URI naming convention. What should we use plural or singular for resource creation? What should be the criteria while deciding that?