The ShippingOptionsRequest is used with the same logic and same purpose also for Wine flow.
If a user wants to trigger the Wine flow for the ShippingOptionsRequest there are some new fields and values to take into consideration.
1) New values for the <GoodType> = WINE_US, WINE_ALL, SPIRITS_US, SPIRITS_ALL
WINE_US and SPIRITS_US are the products that ship to US and the shipment in order to be created needs an importer
WINE_ALL and SPIRITS_ALL are the products that ship to all the world and the shipment in order to be created does not need an importer
2) New field <Value>, external to the proforma section, is needed to calculate duties to US and for US shipments this is a mandatory field.
3) New fields <Bottles> and <Magnums> are related to the number of how many bottles or magnums there are on the shipment within a parcel.
<Bottles>, the maximum number for a single parcel in a shipment is 12 bottle per parcel; if a user wants to send more than 12 bottles, the user will need to create a new item section containing the rest of the bottles.
<Magnums> are double the bottles (1 magnum = 2 bottles). The maximum number for a single parcel in a shipment for the magnums is 6; if a user wants to send more than 6 magnums, the user will need to create a new item section containing the rest of the magnums.
4) New field <WinePackageType> is the new field dedicated to the package type needed for the bottles/magnums of the shipment. The possible values are:
STANDARD (for all the wine products: WINE_US, WINE_ALL, SPIRITS_US, SPIRITS_ALL)
ECO (only for wine products: WINE_ALL, SPIRITS, ALL)
LARGE (only for wine products: WINE_ALL, SPIRITS, ALL)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://www.onlinembe.eu/ws/">
<soapenv:Header/>
<soapenv:Body>
<ws:ShippingOptionsRequest>
<RequestContainer>
<System>IT</System>
<Credentials>
<Username></Username>
<Passphrase></Passphrase>
</Credentials>
<InternalReferenceID></InternalReferenceID>
<ShippingParameters>
<!--Optional:-->
<SenderInfo>
<ZipCode>20125</ZipCode>
<!--Optional:-->
<City>Milano</City>
<!--Optional:-->
<State>MI</State>
<Country>IT</Country>
</SenderInfo>
<DestinationInfo>
<ZipCode>90011</ZipCode>
<!--Optional:-->
<City>Los Angeles</City>
<!--Optional:-->
<State>CA</State>
<Country>US</Country>
</DestinationInfo>
<PackageType>GENERIC</PackageType>
<GoodType>SPIRITS</GoodType>
<Value>200</Value>
<Service></Service>
<Items>
<Item>
<Weight></Weight>
<Dimensions>
<Lenght></Lenght>
<Height></Height>
<Width></Width>
</Dimensions>
<Bottles>4</Bottles>
<Magnums>4</Magnums>
<WinePackageType>STANDARD</WinePackageType>
</Item>
</Items>
<MBESafeValue></MBESafeValue>
<MBESafeValueValue></MBESafeValueValue>
<MBESafeValue4Business></MBESafeValue4Business>
<MBESafeValue4BusinessValue></MBESafeValue4BusinessValue>
<LanguageCode>IT</LanguageCode>
<TaxAndDutyPluginAct>false</TaxAndDutyPluginAct>
<ProformaIncoterms></ProformaIncoterms>
</ShippingParameters>
</RequestContainer>
</ws:ShippingOptionsRequest>
</soapenv:Body>
</soapenv:Envelope>