Endpoint: POST  http://SoapServerName:PortNumber/ProductV2

-----------------------
Required SOAP XML Tags
-----------------------

<Action>                GetProductInfo                        Required Action
<ProductNumber>         1&1TEST                               Required Product Number
<AccountNumber>         00000                                 Required Account Number
<DataSet>               TUGO                                  Dataset to return


--------------------
Example Request Body
--------------------

<?xml version="1.0" encoding="iso-8859-1"?>
  <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>
      <Action>GetProductInfo</Action>
      <ProductNumber>1&amp;1TEST</ProductNumber>
      <AccountNumber>00000</AccountNumber>
      <DataSet>TUGO</DataSet>
    </soap:Body>
  </soap:Envelope>


---------------------------
Example Successful Response
---------------------------

<?xml version="1.0" encoding="iso-8859-1"?>
<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>
    <Response>
      <ProductNumber>1&amp;1TEST</ProductNumber>
      <Description>Test Product Description</Description>
      <USP>Unique Selling Points for Product</USP>
      <PricingUnit>Each</PricingUnit>
      <UnitPrice>4.9000</UnitPrice>
      <PriceFrom>Band Price</PriceFrom>
      <CategoryCode>ZZ</CategoryCode>
    </Response>
  </soap:Body>
</soap:Envelope>


NOTE: UnitPrice - Price returned is based on a quantity of 1.
      PriceFrom - Details Where the unitprice comes from.


-----------
SOAP Errors
-----------

FaultCode   Fault
-----------------------------------------------------------------
-1          Product Number not supplied.
-2          Product not found in database.
-3          Product is no longer available.
-4          Account Number not supplied / Not found in database.
-5          Account has ceased trading.
-6          Required Dataset Invalid or not Supplied.
-99         Invalid Request/Action.