I am using cbswagger and cbswaggerUI module for API documentaion in the coldbox framework.
Getting “failed to api definiation” error in the swagger, while adding the same routes with different method in the router.cfc
Example :
Router.cfc
get( “/api/employee”, “v1.employee.index” );
post( “/api/employee”, “v1.employee.create” );
Do I need to add any configuration in the coldbox.cfc? Could you please give any idea to resolve this?