Hi,
It depends what gooten proposes.
Supposing that they provide a CSV or a XML of all the products they dropship, you can have it imported into HikaShop automatically periodically.
If it's CSV, you might actually be able to do it with the CSV auto import plugin of HikaShop:
www.hikashop.com/support/documentation/7...hop-import.html#cron
Otherwise, I would recommend developing an import plugin based on that existing CSV import plugin.
That way, you would have your plugin periodically called, and you could then retrieve the data you want from your dropship plateform and import the products in HikaShop with MySQL INSERT/UPDATE/REPLACE queries.
If you want to distinguish the products, you could simply create a custom product field via the menu Display>Custom fields. Set it to a particular value for your products and leave it empty for the products imported from Gooten.
Regarding the orders data sending to Gooten, you can develop a second plugin (or add it in that first plugin if you want) and implement the onAfterOrderUpdate trigger of our API:
www.hikashop.com/support/documentation/6...l#onAfterOrderUpdate
In it, check that the $order->order_status is set to confirmed and the $order->old->order_status is set to created and you'll know that the order is being confirmed.
Then, check the products of the order (you might have to use the loadFullOrder function to load the data of the products from the database, or your own MySQL query), and format the data of the products that you want to send to Gooten and send it to their web service.