Смотрю в
книгу вижу "фигу"
var MagentoAPI = require('magento');
var magento = new MagentoAPI({
host: 'your.host',
port: 80,
path: '/api/xmlrpc/',
login: 'your_username',
pass: 'your_pass'
});
magento.login(function(err, sessId) {
if (err) {
// deal with error
return;
}
// Параметры товара
var productData = {
name: 'Товар',
categories: 'Категория',
description: 'Описание',
short_description: 'Короткое описание',
visibility: 4,
weight: 10,
status: 1,
price: 100,
tax_class_id: 1
}
// Создаем товар
magento.catalogProduct.create({
type: 'simple',
set: 1,
sku: 333,
data: '01.11.01',
}, function (a) {console.log( a)} );
});