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
only one is needed i guess. Also this would probably just be POST /users or POST /user would be able to handle both list and single
There is an approach for this using queryParameters. The reason behind this is, that you don't want to create a new endpoint for every possible attribute the pet might have. instead you would do this: /GET /pet?status=alive&tag=pettag
The text was updated successfully, but these errors were encountered:
hey, makes sense but that's actually not my api, for some reason after installing docker, it started showing default swagger api. eventhough I had disabled it before. still trying to figure that out, but in the meanwhile you can enter this url in the explore box and access my api:
only one is needed i guess. Also this would probably just be
POST /users
orPOST /user
would be able to handle both list and singleThere is an approach for this using
queryParameters
. The reason behind this is, that you don't want to create a new endpoint for every possible attribute the pet might have. instead you would do this:/GET /pet?status=alive&tag=pettag
The text was updated successfully, but these errors were encountered: