I was able to retrieve data from my webshop hosted by a 3the company. Normaly we can retrieve and upload data by API
Download = working (I retrieve some productdata)
Upload (Change a name from a product seems to be more difficult)
For upload, the server samples show this :
curl -X PATCH "http://swagger.shoptrader.com/api/v2/products/1994?token=abc" -H "accept: application/json" -H "token: abc" -H "Content-Type: application/json" -d "{\"model\":\"string\",\"sku\":\"string\",\"ean\":\"string\",\"name\":\"Test 1994\",\"description\":\"string\",\"introDescription\":\"string\",\"extraDescription\":\"string\",\"metaTitle\":\"string\",\"metaKeyword\":\"string\",\"metaDescription\":\"string\",\"quantity\":0,\"categoryId\":0,\"price\":0,\"purchasePrice\":0,\"status\":true,\"taxRate\":0,\"manufacturerId\":0,\"width\":0,\"height\":0,\"weight\":0,\"images\":[\"ImageOne\"],\"imagesAlt\":[\"ImageOneAlt\"],\"resources\":[{\"resourceKey\":\"key\",\"resourceValue\":\"value\",\"resourceType\":\"type\"}]}"
and there is
Request Url :
http://swagger.shoptrader.com/api/v2/pr ... ?token=abc
For retrieve we put : "https://swagger.shoptrader.com/api/v2/products?limit=100&token=abc" and this gives resulting data to retrieve
Now for upload/edit online, how does the program need to get the command ? The request Url = not having all the data i thing
Online sample with Swagger: http://apidocs.shoptrader.com/#/Products/productsPatch