/
Product Sync

Product Sync

Step1. We have to sync all the products/items created in Unicommerce with Eshopbox and create those products/items in Eshopbox.

Step2. Get the SKU code.

Step3. Extract tenant name and prepare Search Items API

https://{{tenant}}.unicommerce.com/services/rest/v1/product/itemType/search

Step4. Prepare Request body for the Search Items API

Keys

Values

Keys

Values

keyword

 

productCode

 

categoryCode

 

getInventorySnapshot

 

searchOptions.searchKey

 

searchOptions.displayLength

 

searchOptions.displayStart

 

searchOptions.columns

 

searchOptions.sortingCols

 

searchOptions.sortColumnIndex

 

searchOptions.columnNames

 

searchOptions.getCount

 

Request Body:

{ "keyword": "string", "productCode": "007MJ3G1MQT", "categoryCode": "string", "getInventorySnapshot": true, "searchOptions": { "searchKey": "string", "displayLength": 0, "displayStart": 0, "columns": 0, "sortingCols": 0, "sortColumnIndex": 0, "sortDirection": "string", "columnNames": "string", "getCount": true } }

Step5. Make a HTTP POST Request to the Search Items API along with access token and request body.

Step6. Unicommerce will return a list of items.

Response:

{ "successful": true, "message": null, "errors": null, "warnings": null, "totalRecords": null, "elements": [ { "id": 1009712, "skuCode": "007MJ3G1MQT", "name": "PMTA04187-G381F100", "description": "DOUBLE PLEAT CROSS POCKET-COMFORT FIT", "length": 570, "width": 400, "height": 10, "weight": 510, "price": 1999.00, "basePrice": null, "color": null, "size": "100", "brand": "Park Avenue", "taxTypeCode": null, "gstTaxTypeCode": "es_apparels", "hsnCode": "62034990", "categoryName": "Apparels_with_Tax", "categoryCode": "APL", "productPageUrl": null, "imageUrl": "https://ik.imagekit.io/eshopbox/workspace/https://cdn.shopify.com/s/files/1/0971/9530/products/PMTA04187_G3_1_7956aef2-3254-4524-b368-cebfa4ecd9f2.jpg?v=1504570826?tr=w-300,h-300", "tags": [], "customFieldValues": [], "inventorySnapshots": null, "expirable": null, "shelfLife": null, "itemDetailFieldDTOList": null } ] }

Related content