The URL is a sentence, where resources are nouns and HTTP methods are verbs.
- The URL should only contain resources(nouns) not actions or verbs. The API path/addNewEmployee contains the action addNew along with the resource name Employee.
- The resources should be plural ,not singular Employees is right. Employee is wrong.
- To tell server , what to do , whether to add or delete , we have HTTP Methods /Verbs.