I have currently a webservice that load an object which looks like /object/load?id=100, the problem is that my object is really huge and it takes a long time to get the full response of the webservice just to see if the object exists or not.
What is the best pratice here ?
Creating a new webservice
/object/exists?id=100thats only use HTTP status code (200 if object exists, 404 if not) ?Add parameter to the
/object/loadwebservice to return only simplified object ?