I am a beginner with the RESTful architecture and I have some questions about it. I have understood the main ideas : Verbs & Ressources. But I don't really know what URIs I should use for my Web-application project.
-> What URI should I use to get pages such as the subscription / register page (to create a new user), or any other pages that enables to create new ressources.
Should I do something like : GET webiste.com/user/new or : GET website.com/subscription
Thank you.
For creating new objects, it should be using POST, like:
POST website.com/users
POST website.com/subscriptions
GET should be used for retrieving / reading, like:
GET website.com/users?name=adam
GET website.com/users/35 (get user with id of 35)
GET website.com/users (get all users)