You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the the Swagger UI page (at https://<MY_IP>/api/v1/swagger-ui.html), the URL used to test the endpoints (the one displayed in the curl command) is incorrect because it does not include /api/v1 subpath before the endpoint. Consequently, it is impossible to test the API with this Swagger page.
e.g. with the GET /applications in "application-controller" :
curl -X GET "https://<MY_IP>/applications" -H "accept: */*"
instead of
curl -X GET "https://<MY_IP>/api/v1/applications" -H "accept: */*"
The text was updated successfully, but these errors were encountered:
In the the Swagger UI page (at
https://<MY_IP>/api/v1/swagger-ui.html
), the URL used to test the endpoints (the one displayed in thecurl
command) is incorrect because it does not include/api/v1
subpath before the endpoint. Consequently, it is impossible to test the API with this Swagger page.e.g. with the
GET /applications
in "application-controller" :instead of
The text was updated successfully, but these errors were encountered: