[Solved] Which naming pattern should i use for basic CRUD?
Use the HTTP verb to control what you want to do with the resouces: GET: /services -> returns all elements GET: /services/{id} -> returns element with id POST: /services -> creates a new object, pass the object in the body PUT: /services/{id} -> updates element with id, pass updated values in body DELETE: /services/{id} -> … Read more