I have an application that pulls daily data from survey monkey using their API. I am looking for a way to check if a survey got deleted on survey monkey.
As far as I know I can send a request on /surveys/{id} and if I get an 404 error (the resource does not exist) it means that the survey is deleted. The problem is that I checked their API documentation and it is stated there that 404 means:
There was an error retrieving the requested resource
So this error will be send when there is an error retrieving the survey (it does not mean that the survey is deleted). So, is there a better way to check if a survey got deleted on survey monkey ?