This is a server-side library that exposes the PrestaShop web service as resource and model abstractions. It allows web service consumers to be unaware of the web service's HTTP interface, or how to deal with XML payloads.
Create a client instance
import { rest } from 'prestashop-api-client';
const client = new rest.Client({
language: 'en',
languages: {
'en': 1,
'es': 2,
},
webservice: {
key: 'YOUR_PRESTASHOP_API_KEY',
scheme: 'https',
host: 'your-prestashop-domain',
root: '/api',
},
});
Change the current client language
client.setLanguageIso('en');
Access a resource
const resource = client.resource('products');
Retrieve all models exposed by a resource
resource.list().then((models) => {
// models is an Array containing Model instances
});
Retrieve a single model from a resource by its ID
resource.get(id).then((model) => {
// model is a Model instance
});
- products
- images
- manufacturers
- combinations
- stock_availables
- product_option_values
- Product
- Image
- Manufacturer
- Combination
- StockAvailable
- ProductOptionValue
Some concrete Models implement methods that return a Resource. When a Model returns a Resource this way, that resource acts on objects that are related to that model.
Product
// get an Images resource that exposes Image models related to the Product
product.images()
// get Image models related to the Product
product.images().list()
// get a Manufacturers resource
product.manufacturer()
// get the related Manufacturer model
product.manufacturer().first()
// get a Combinations resource
product.combinations()
// get Combination models related to the Product
product.combinations().list()
languages
A dictionary that maps ISO-639-1 language codes to PrestaShop language ids.
language
The language to select when parsing translatable attributes.
webservice
HTTP request parameters
key HTTP Basic Auth username
scheme defaults to "https"
host your PrestaShop host
root the api root path; defaults to "/api"
logger
A logger instance. Defaults to dummy logger that doesn't log anything.
- Fork
develop
branch - Push changes to your fork.
- Submit a pull request.
MIT