Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bagisto/rest-api
Bagisto REST API provides powerful and flexible endpoints to manage e-commerce operations, including products, orders, customers, and more.
https://github.com/bagisto/rest-api
Last synced: 4 days ago
JSON representation
Bagisto REST API provides powerful and flexible endpoints to manage e-commerce operations, including products, orders, customers, and more.
- Host: GitHub
- URL: https://github.com/bagisto/rest-api
- Owner: bagisto
- Created: 2021-11-19T12:12:29.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-08T07:41:30.000Z (about 1 month ago)
- Last Synced: 2024-11-07T05:08:48.048Z (6 days ago)
- Language: PHP
- Homepage:
- Size: 1.69 MB
- Stars: 21
- Watchers: 4
- Forks: 25
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG_v2.x.x.md
Awesome Lists containing this project
README
# Bagisto REST API
Bagisto REST API is a medium to use the features of the core Bagisto System. By using Bagisto REST API, you can integrate your application to serve the default content of Bagisto.
### 1. Requirements:
* **Bagisto**: v2.2.x
### 2. Installation:
#### Install the stable version of Bagisto Rest API from your console using the below command:
~~~
composer require bagisto/rest-api
~~~##### Add below options in the .env file (i.e. http://localhost/public your domain):
~~~
SANCTUM_STATEFUL_DOMAINS=http://localhost/public
~~~##### To configure the REST API L5-Swagger Documentation run below command:
~~~
php artisan bagisto-rest-api:install
~~~##### To check the Admin end API documentation:
~~~
http://localhost/public/api/admin/documentation
~~~##### To check the Shop end API documentation:
~~~
http://localhost/public/api/shop/documentation
~~~* You can check the L5-Swagger guidelines too regarding the configuration the API documentation.