diovannie / bigcommerce-api-curl-request
This bundle provide client Api Connection to specific Bigcommerce store using Curl request methods.
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-01-16 22:01:52 UTC
README
This project was develop from this repository https://github.com/adambilsing/PHP-cURL-lib-for-Bigcommerce-API for improvement so that it can be used particulary for now in Symfony.
How to use inside the class:
use BigcommerceApiCurlRequest\ApiConnection;
//instantiate new store connection by providing Username and API path and token that you can get from your store admin page
$store = new ApiConnection('Username', 'API path', 'API token
//Call specific methods by specifying Resource such as Products, Customers, etc2x..
$store->get('RESOURCE');
$store->delete('RESOURCE');
$store->post('RESOURCE', $fields);
$store->put('RESOURCE', $fields);