In cXML, was is the correct and expected way to specify the requested shipping method and carrier for a purchase order? For example, how would I request USPS Priority Mail?
It seems to require a mixture of ShipTo > CarrierIdentifier
and Shipping > Description
. But even the official user guide seems to have a mismatch (UPS and FedEx 2-day)...
<OrderRequestHeader>
...
<ShipTo>
<Address>
...
</Address>
<CarrierIdentifier domain="companyName">UPS</CarrierIdentifier>
</ShipTo>
...
<Shipping>
...
<Description xml:lang="en-US">FedEx 2-day</Description>
</Shipping>
...
</OrderRequestHeader>