Post this on the Adobe forums that should answer your question:
The reason you cannot access / api / or / rest / is because there is a cf servlet mapping for these folders.
You can remove the mapping by going to cfinstall / cfusion / wwwroot / WEB-INF / web.xml. Find api-servlet mapping and comment on this.
There seems to be no way to do this for a specific site other than using IIS rewriting to redirect traffic to another folder. Something like this should work (redirects traffic from / api / to / api 2 /):
<rule name="Redirect" stopProcessing="true"> <match url="^api$|^api/(.*)" /> <action type="Rewrite" url="api2/{R:1}" appendQueryString="true" /> </rule>
if someone knows a way to disable it for a specific site without changing web.config, please feel free to share your ideas.
source share