I have created a web api (REST) called Filter that has multiple get methods such as
GetCompany GetCustomers GetOrders
Is this correct practise or should I have different web api for different entities? Should I have same http verb (GET) duplicated in the same WEB API.
What about other verbs (POST or PUT)?
In another service we have one case where we want to update a specific field and another case where we can update anything except that specific field in the record. Should one method (POST or PUT) be used for both cases or can I have two separate methods?
I am calling these methods from angularjs $http service.