Shipping
There are two ways to define shipping on a product, Flat Rate and Carrier.
Flat rate shipping
This option is configured by the “shipping” field on each product in the API.
A flat-rate for shipping each product anywhere that store ships to.
If the customer purchases two of the same item, they are charged the full shipping rate twice. If the customer purchases two different items, each will attract the full shipping rate.
Free shipping
To mark a product as free shipping, use a flat rate of 0.
{
"product_sku": "9770642012000",
...
"offer_data": {
"AUD": {
"price": "179.95",
"handling_days": 2,
"shipping": "0.00"
}
}
}
{
"product_sku": "9770642012000",
...
"offer_data": {
"AUD": {
"price": "179.95",
"handling_days": 2,
"shipping": "5.99"
}
}
}
Carrier Shipping
To use a carrier based shipping method, do not provide a shipping value in the API.
If your shipping costs change per postcode, you will need to use a carrier shipping method.
This is a private integration and needs to be discussed with your Marketplace Account Manager.
Updated over 4 years ago