Products catalog Import
In order to synchronize the Product Catalog, it is necessary to call 2 endpoints in sequence:- Call productCategories endpoint (the response will contain errors or warnings that occurred during the import process)
- Call products endpoint (the response will contain errors or warnings that occurred during the import process)
Product Categories
POST /pos//company//import/productCategoriesInput request
Input parameters
| Field name | Description |
|---|---|
| name | Category name |
| posProductParentCategoryId | Parent Category Id in POS (if exists) |
| posProductCategoryId | Category ID in POS |
| posCatalogId | Product Catalog Id (if exists) |
Response
Products
POST /pos//company//import/productsInput request
Input parameters
| Field name | Description |
|---|---|
| productId | POS Product Id |
| ProductName | Product Name in POS |
| manufacturer | Product Manufacturer (if exists) |
| price | Product price |
| externalCategoryIds | Category ID in POS (which were created in the productCategories endpoint call) |