Hi!
Trying to get the grips of best URI practice in RESTfulness... Let's say that
- /service/user.xml returns an xml with all users data
- /service/user/1.xml returns an xml with data for user id 1
What if I want to get just the email address of the user(s)?
- /service/user.xml?par=email or /service/user/email.xml for all users?
- /service/user/1.xml?par=email or /service/user/email/1.xml for user id 1?
Regards / Jonas