Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width40%
Panel
borderColor#6699ff
bgColor#ffffff
titleBGColor#D5EFFF
borderStylesolid
titleOrdering
Table of Contents
maxLevel3
Column

 

...

Code Block
xml
xml
<?xml version="1.0" encoding="utf-8"?>
<OrderRequest xmlns="http://webmercs.com/vis/public/orderrequest">
  <OrderHeader>
    <CustomerID></CustomerID>
    <CustomerPO></CustomerPO>
    <OrderDateTime></DateTime>
    <SplitOrder></SplitOrder>
    <ShippingMethod></ShippingMethod>
	<RequestedDeliveryDate></RequestedDeliveryDate> 
    <Comment></Comment> 
    <BillTo>
      <Name></Name>
      <Company></Company>
      <Department></Department>
      <Street></Street>
      <City></City>
      <StateProvince></StateProvince>
      <Zip></Zip>
      <Country></Country>
      <Phone></Phone>
      <Email></Email>
    </BillTo>
    <ShipTo>
      <Name></Name>
      <Company></Company>
      <Department></Department>
      <Street></Street>
      <City></City>
      <StateProvince></StateProvince>
      <Zip></Zip>
      <Country></Country>
      <Phone></Phone>
      <Email></Email>
      <EndUserPO></EndUserPO>
    </ShipTo>
  </OrderHeader>
  <OrderLines>
    <OrderLine>
      <LineNumber></LineNumber>
      <VendorSKU></VendorSKU>
      <WmxSKU></WmxSKU>
      <Description></Description>
      <Qty></Qty>
      <ExpectedPrice></ExpectedPrice>
      <Bid>
        <ClaimNo></ClaimNo>
        <Price></Price>
      </Bid>
      <Comment></Comment>
    </OrderLine>
  </OrderLines>
</OrderRequest>

...

FieldRequiredData TypeDescriptionSample

CustomerID

yesstring

Customer identifier in a vendor system which is provided on setup step.

"CID-898800"

CustomerPO

yesstringUnique order request identifier in Webmercs system."3445FHY-2"

OrderDateTime

yesdateTime

Date and time when Webmercs received order request from customer.  

2012-10-25T12:50:12+01:00

SplitOrder

yesstringPossible values: "Yes", "No"."Yes"

ShippingMethod

nostring  

RequestedDeliveryDate

nodateTimeCustomer may ask for a particular delivery date.2012-10-30
CommentnostringCustomer's comment."Test order, do not ship!"
ShipToyes Shipping address, see <ShipTo> segment. 

BillTo

no 

Billing address. Same fields as <ShipTo> segment, except EndUserPO.

 

...

Code Block
xml
xml
<?xml version="1.0" encoding="utf-8"?>
<DespatchAdvice xmlns="http://webmercs.com/vis/public/orderdespatchadvice">
  <CustomerID></CustomerID>
  <CustomerPO></CustomerPO>
  <VendorOrderID></VendorOrderID>
  <OrderLines>
    <OrderLine>
      <LineNumber></LineNumber>
      <VendorSKU></VendorSKU>
      <Qty></Qty>
      <Price></Price>
      <SerialNumbers>
        <SerialNo></SerialNo>
      </SerialNumbers>
    </OrderLine>
  </OrderLines>
  <TrackingLines>
    <TrackingLine>
      <TrackingNo></TrackingNo>
      <ShipMethod></ShipMethod>
      <TrackingURL></TrackingURL>
    </TrackingLine>
  </TrackingLines>
</DespatchAdvice> 

...

Code Block
xml
xml
<?xml version="1.0" encoding="utf-8"?>
<OrderAcknowledgment xmlns="http://webmercs.com/vis/public/orderacknowledgment">
  <CustomerID></CustomerID>
  <CustomerPO></CustomerPO>
<OrderAcknowledgment>

...