|
|
|
### Running
|
|
|
|
``` ruby
|
|
|
|
ThreeDeeCart::Customer.update_shipment(options)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Available Options
|
|
|
|
Bold parameters are required:
|
|
|
|
|
|
|
|
|
|
|
|
**storeURL** -
|
|
|
|
3dCart Store URL from which the information will be requested. i.e.: www.3dcart.com
|
|
|
|
|
|
|
|
**invoiceNum** - Search for specific invoice number.
|
|
|
|
|
|
|
|
**tracking** - tracking code
|
|
|
|
|
|
|
|
**shipmentDate** - Shipping date of the specified order/shipment.
|
|
|
|
|
|
|
|
shipmentID - numeric, Identifies the shipment id for multiple shipment orders. This ID can be found on the response of the getOrder method.
|
|
|
|
|
|
|
|
### Example
|
|
|
|
``` ruby
|
|
|
|
ThreeDeeCart::Customer.update_shipment({storeURL: "http://www.3dcart.com", invoiceNum: "a12345", tracking: "ADJ9UJDFV", shipmentDate: "12/12/2013"})
|
|
|
|
``` |
|
|
|
\ No newline at end of file |