Is there documentation for all base bagisto routes?
-
I want to find a route I can use to programatically add a product to the basket.
I assume this exists as it's quite a common method, obviously my issue is solved if I know what route does this, but I wanted to go one step further and see if I can find a list of all base bagisto routes and what they do. So that I can read them and see which ones will be usefull.
PS: I'm developing on top of bagisto to create a custom integration with database and system.
-
Hello There,
Thank you so much for your query,
Yes you may follow below link for your concern.https://devdocs.bagisto.com/master/packages/routes.html
Thanks.
-
@ashish2409 He wanted a documentation for all existing endpoints (like swagger) and you pointed him to a guide on how to add a route.
I like the bagisto product but damn, Admins on this forum are answering like AI
-
@Peppek1993 and @miguel-barbosa
Thanks for letting us know. I request you to kindly check the Swagger Rest API demo. I hope this is what exactly you are looking for.
https://demo.bagisto.com/bagisto-api-demo/
Thanks
-
@miguel-barbosa you can use the following laravel command to get a list of all routes
php artisan route:list
-
Thank you everyone for your feedback.
Sorry for the late feedback, the answers were enough to get where I wanted to.