POST /SelfService.PublicAPI/OrderService.asmx HTTP/1.1
Host: selfservice.customcd.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.customcd.us/selfservice/publicApi/SendOrder"


<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendOrder xmlns="http://www.customcd.us/selfservice/publicApi">
      <orderXml>string</orderXml>
      <developerId>string</developerId>
    </SendOrder>
  </soap:Body>
</soap:Envelope>

Test account:
DeveloperID: wR+1utoW2fxiGvtELrQeUg==
ProductID (Dynamic content): 331
ProductID (Predefined content): 332


<?xml version="1.0" encoding="UTF-8"?>
<Order externalId ="ext_ID">
  <OrderDataList>
    <OrderData BindingType="Product" Binding="1">
      <Key>SERIAL_NUMBER</Key>
      <Value>XXXX-1111-YYYY-4444</Value>
    </OrderData>
    <!--Customs Form Values -->
    <OrderData>
      <Key>CF_BACKUPCD_AMOUNT</Key>
      <Value>0</Value>
    </OrderData>
    <OrderData>
      <Key>CF_ORDER_SHIPPING_COST</Key>
      <Value>5.5</Value>
    </OrderData>
    <OrderData>
      <Key>CF_ORDER_AMOUNT</Key>
      <Value>29.99</Value>
    </OrderData>
    <OrderData>
      <Key>CF_ORDER_CURRENCY</Key>
      <Value>USD</Value>
    </OrderData>
    <OrderData>
      <Key>CF_ORDER_TAX</Key>
      <Value>2.76</Value>
    </OrderData>
    <!--End of Customs Form Values -->
  </OrderDataList>
  <ProductList>
    <Product ProductID="1"/>
  </ProductList>
  <ShipmentInfo>
    <FirstName>John</FirstName>
    <LastName>Smith</LastName>
    <Address>24001 Junction Drive</Address>
    <City>California City</City>
    <StateProvince>CA</StateProvince>
    <ZIP>94365-3423</ZIP>
    <Country>UA</Country>
    <Phone/>
    <Email>John@smith.com</Email>
    <ShippingMethod>USPS-FCM</ShippingMethod >
  </ShipmentInfo>
</Order>
