Request for item details (GetItemDetailsList)
The client either invokes the following URL via HTTP GET:
https://b2b.beispielserver.com/?BuyersID=B127645&Password=secret&RequestName=GetItemDetailsListRequest&Quantity.42213526300=10&quantityUnitCode.42213526300=PK&SellersItemIdentification=42213526400&Quantity.42213526500=4&quantityUnitCode.42213526500=PK
or sends the following body with content type xml/application as an equivalent via HTTP POST to the address https://b2b.beispielserver.com/
:
Â
<?xml version="1.0" encoding="UTF-8"?>
<GetItemDetailsListRequest xmlns="urn:veloconnect:order-1.1"
xmlns:vct="urn:veloconnect:transaction-1.0"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0">
<vct:BuyersID></vct:BuyersID>
<vct:Credential><vct:Password>secret</vct:Password></vct:Credential>
<RequestEntry>
<cac:SellersItemIdentification>
<cac:ID>42213526300</cac:ID>
</cac:SellersItemIdentification>
<cbc:Quantity quantityUnitCode="PK">10</cbc:Quantity>
</RequestEntry>
<RequestEntry>
<cac:SellersItemIdentification>
<cac:ID>42213526400</cac:ID>
</cac:SellersItemIdentification>
</RequestEntry>
<RequestEntry>
<cac:SellersItemIdentification>
<cac:ID>42213526500</cac:ID>
</cac:SellersItemIdentification>
<cbc:Quantity quantityUnitCode="PK">4</cbc:Quantity>
</RequestEntry>
</GetItemDetailsListRequest>
Â
The server provides the following response:
Â
<?xml version="1.0" encoding="utf-8" ?>
<GetItemDetailsListResponse xmlns="urn:veloconnect:order-1.1" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0" xmlns:vct="urn:veloconnect:transaction-1.0">
<vct:BuyersID>B127645</vct:BuyersID>
<vct:ResponseCode>200</vct:ResponseCode>
<ItemDetail>
<cac:Item>
<cbc:Description>
Speichen DD 2,0x1,8x 263 mm, silber Race,Niro, mit Messingnippel
</cbc:Description>
<cbc:PackQuantity quantityUnitCode="EA">100</cbc:PackQuantity>
<cac:SellersItemIdentification>
<cac:ID>42213526300</cac:ID>
</cac:SellersItemIdentification>
<cac:StandardItemIdentification>
<cac:ID identificationSchemeID="EAN/UCC-13">4032191511108</cac:ID>
</cac:StandardItemIdentification>
<cac:BasePrice>
<cbc:PriceAmount amountCurrencyID="EUR">34.90</cbc:PriceAmount>
<cbc:BaseQuantity quantityUnitCode="PK">1</cbc:BaseQuantity>
</cac:BasePrice>
<cac:BasePrice>
<cbc:PriceAmount amountCurrencyID="EUR">29.50</cbc:PriceAmount>
<cbc:BaseQuantity quantityUnitCode="PK">1</cbc:BaseQuantity>
<cbc:MinimumQuantity quantityUnitCode="PK">10</cbc:MinimumQuantity>
</cac:BasePrice>
<cac:RecommendedRetailPrice>
<cbc:PriceAmount amountCurrencyID="EUR">0.70</cbc:PriceAmount>
<cbc:BaseQuantity quantityUnitCode="EA">1</cbc:BaseQuantity>
</cac:RecommendedRetailPrice>
</cac:Item>
<Availability>
<Code>partially_available</Code>
<AvailableQuantity quantityUnitCode="PK">7</AvailableQuantity>
</Availability>
</ItemDetail>
<ItemDetail>
<ItemUnknown>
<cac:SellersItemIdentification>
<cac:ID>42213526400</cac:ID>
</cac:SellersItemIdentification>
</ItemUnknown>
</ItemDetail>
<ItemDetail>
<RequestReplacement>
<cac:SellersItemIdentification>
<cac:ID>42213526500</cac:ID>
</cac:SellersItemIdentification>
<cac:ItemReplacement>
<cac:ID>42213527500</cac:ID>
<cac:ReplacementCode>recommended</cac:ReplacementCode>
<cbc:Description>Speichen DD 2,0x1,8x 274 mm, silber Race,Niro, mit Messingnippel</cbc:Description>
</cac:ItemReplacement>
</RequestReplacement>
</ItemDetail>
</GetItemDetailsListResponse>
To be noted here:Â
In the case of item 42213526300, the inventory is insufficient for the requested quantity of 10 PK. Only 7 PK are available.
Item 42213526400 is unknown.
Item 42213526500 is no longer in the assortment; item 42213527500 is recommended as a replacement.
Â