I'm building a RESTful API amongst others I have the following endpoint:
- /api/feedback
REST resources should use their plural forms. In this case, Feedback is a mass noun, that is it doesn't have a plural form. How should I deal with it?
Should it be /api/feedback or /api/feedbacks?