Search found 6 matches

by jimAtXR
Thu 15 Mar 2018 18:33
Forum: SSIS Data Flow Components
Topic: Updating Magento Shipments With Tracking
Replies: 7
Views: 21377

Re: Updating Magento Shipments With Tracking

Are you going to support updating shipments with tracking? I am still using another tool outside of SSIS to update tracking for our Magento sites. The operation is "salesOrderShipmentAddTrack" and includes the following fields..sessionId, shipmentIncrementId, carrier, title, and trackNumber.
It would be much better if we could use devart and build an SSIS job to take care of this.
by jimAtXR
Thu 15 Mar 2018 18:23
Forum: SSIS Data Flow Components
Topic: Updating Magento Quantity Available
Replies: 1
Views: 1718

Updating Magento Quantity Available

Please confirm that you don't support updating the quantity available for Magento inventory. I have tried using the Magento Destination object with "Action" set to Update without success. I just get an error that says "InventoryStockItems does not support UPDATE operation". I use another tool outside of SSIS that does update inventory using the API operation called "catalogInventoryStockUpdate", but I would rather have this in an SSIS job.
by jimAtXR
Tue 26 Sep 2017 15:51
Forum: SSIS Data Flow Components
Topic: Updating BigCommerce Inventory Values
Replies: 3
Views: 2768

Re: Updating BigCommerce Inventory Values

The UpdateProductInventoryLevel and UpdateSKUInventoryLevel are referenced from the WSDL and I am using soap. The documentation for BigCommerce V2/V3 show the two methods under Products and SKUs using Update.

https://developer.bigcommerce.com/api/v ... -a-product
https://developer.bigcommerce.com/api/v ... roduct-sku

I need the update for both inventory values. Product inventory is for items that don't have options like color or size. The SKU inventory covers the other items that are tracked separately, but grouped under one general product name.
by jimAtXR
Wed 20 Sep 2017 17:50
Forum: SSIS Data Flow Components
Topic: Updating Magento Shipments With Tracking
Replies: 7
Views: 21377

Re: Updating Magento Shipments With Tracking

Let me know if this doesn't apply, but I found the documentation that appears to support the tracking update.

Magento 2.0 REST API documentation shows salesShipmentTrackRepositoryV1 and it is a post operation that includes tracking.
http://devdocs.magento.com/swagger/index_20.html

Magento 2.0 SOAP API
http://devdocs.magento.com/guides/v2.0/ ... -soap.html
salesShipmentTrackRepositoryV1: http://<magento_host>/soap/default?wsdl&services=salesShipmentTrackRepositoryV1
by jimAtXR
Tue 19 Sep 2017 22:24
Forum: SSIS Data Flow Components
Topic: Updating BigCommerce Inventory Values
Replies: 3
Views: 2768

Updating BigCommerce Inventory Values

I need to update the inventory level for product on the website that is tracked at the product and sku level. Updating the sku tracked items I would use BigCommerce API "UpdateSKUInventoryLevel" and for the product tracked items I would use "UpdateProductInventoryLevel". In the SSIS BigCommerce Destination task I don't see these options to update inventory.
by jimAtXR
Tue 19 Sep 2017 20:47
Forum: SSIS Data Flow Components
Topic: Updating Magento Shipments With Tracking
Replies: 7
Views: 21377

Updating Magento Shipments With Tracking

When using the Magento SSIS Destination I can select the shipments, but I can't find a way to update a shipment. I need to update the tracking after I create a shipment. In the Magento API using salesOrderShipmentAddTrack works to update the tracking value.