Simple REST URL scheme
In my web app I've got a user model and a journal and post model. Each user can have multiple journals, each journal can have multiple posts. Is below the best way to represent this in a RESTful way? /profiles/<username> /profiles/<username>/journals/<journal_id> /profiles/<username>/journals/<journal_id>/posts/<post_id> or would: /profiles/<username> /journals/<journal_id> be a better way to go? Ming Chan You have three types of resources: Profiles, Journals, and Posts. If your business needs is to allow end-users to have access to them all, you will need to provide PUT/POST/GET/DELETE CRUD