https://github.com/unifysell/unifysell-sdk-php
SDK with OAuth2 for the unifysell API which allows you to painless integrate many eCommerce channels :clock3:
https://github.com/unifysell/unifysell-sdk-php
api ecommerce openapi openapi3 php sdk unifysell
Last synced: 21 days ago
JSON representation
SDK with OAuth2 for the unifysell API which allows you to painless integrate many eCommerce channels :clock3:
- Host: GitHub
- URL: https://github.com/unifysell/unifysell-sdk-php
- Owner: unifysell
- License: mit
- Created: 2018-07-16T09:36:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-04T08:35:15.000Z (over 6 years ago)
- Last Synced: 2025-08-16T20:24:10.357Z (6 months ago)
- Topics: api, ecommerce, openapi, openapi3, php, sdk, unifysell
- Language: PHP
- Homepage: https://unifysell.de
- Size: 192 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Official Unifysell API SDK
This packages combines the group of packages needed.
## Installation
### Include the package via composer
to use in composer add to the require section:
"require": {
"unifysell/unifysell-sdk-php": "*"
}
### Installing composer
see https://getcomposer.org/download/
## Usage
You can have a look at the `example/complete-example.php` file for a basic usage example.
### Authenticate
Download Access Token from unifysell Control Center (UCC).
### Make your first request
$config = Unifysell\SDK\Configuration::getDefaultConfiguration()->setApiKey(
'Authorization',
'----INSERT BEARER TOKEN HERE----'
);
$config->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Unifysell\SDK\Api\OrdersApi(
new GuzzleHttp\Client(),
$config
);
$result = $apiInstance->getOrder(1);