Tradera Developer Program

RestrictedService

Documentation Version 3 > RestrictedService > GetSellerItems

GetSellerItems |WebMethod|

Gets items for the current seller. Does not get any items with a start date which is in the future, regardless of parameter values.

Parameters
  1. categoryId, The Id of the category to look for items in (use 0 for all categories)
    eg. 344481 for test item category
  2. filterItemType, Item types to return:
    "All"
    "Auction"
    "PureBuyItNow"
    "ShopItem"
  3. filterActive, The filter to use:
    "All" = All,
    "Active" = Only active items (EndDate > NOW),
    "Inactive" = Only inactive items (EndDate < NOW)

    Can be overridden with either the minEndDate or maxEndate parameters.
  4. minEndDate, Will return items with EndDate > than this parameter.
    Either send NULL or a DateTime <= DateTime.MinValue (0001-01-01 00:00:00) if not used.
  5. maxEndDate, Will return items with EndDate < than this parameter.
    Either send NULL or a DateTime >= DateTime.MaxValue (9999-12-31 00:00:00) if not used.
Returns

Array of items

Code Example

THe following is a PHP example showing how GetSellerItems can be used.

  1:
  2:
  3:
  4:
  5:
  6:
  7:
  8:
  9:
 10:
 11:
 12:
 13:
 14:
 15:
 16:
 17:
 18:
 19:
 20:
 21:
 22:
 23:
 24:
 25:
 26:
 27:
 28:
 29:
 30:
 31:
 32:
 33:
 34:
 35:
 36:
 37:
 38:
 39:
 40:
 41:
 42:
 43:
 44:
 45:
 46:
 47:
 48:
 49:
 50:
 51:
 52:
 53:
 54:
 55:
 56:
 57:
 58:
 // Replace the following variables with your own key management
 // $APPLICATION_KEY
 // $TOKEN
 // $USER_ID
 // $APPLICATION_ID
 try {
 	$appId = $APPLICATION_ID;
 	$userId = $USER_ID;
 	$token = $TOKEN;
 	$appKey = $APPLICATION_KEY;
 	$restrictedServiceUrl = 'https://api.tradera.com/v3/RestrictedService.asmx';

 	$restrictedServiceUrlWithAuth = $restrictedServiceUrl
 					. '?appId=' . $appId
 					. '&appKey=' . $appKey
 					. '&userId=' . $userId
 					. '&token=' . $token;

 	$restrictedClient = new SoapClient(
 		$restrictedServiceUrl . '?WSDL',
 		array('location' => $restrictedServiceUrlWithAuth)
 	);
 	$params = new StdClass();
 	$params -> categoryId = 0; //any category
 	$params -> filterActive = 'All'; // Active and inactive
 	$params -> filterItemType = 'ShopItem'; // shop items only
 	// Overrides filterActive when set (filterActive still needs a valid value)
 	// $params -> minEndDate = mktime(0,0,0,0,0,1);
 	// $params -> maxEndDate = mktime(0,0,0,1,1,2018);

 	$result = $restrictedClient -> GetSellerItems($params);

 	$items = $result -> GetSellerItemsResult -> Item;

 	function printItem($item){
 		echo 'Id: ' . $item -> Id . PHP_EOL;
 		echo 'Name: ' . $item -> ShortDescription . PHP_EOL;
 		echo 'Remaining Qty: ' . $item -> RemainingQuantity . PHP_EOL;
 		echo 'Price: ' . $item -> BuyItNowPrice . PHP_EOL;
 		echo 'EndDate: ' . $item -> EndDate . PHP_EOL;
 		echo 'StartDate: ' . $item -> StartDate . PHP_EOL . PHP_EOL;
 	}

 	if(is_array($items)){
 		foreach ($items as $key => $item) {
 			printItem($item);
 		}
 	}
 	elseif (isset($items)) {
 		printItem($items);
 	}
 	else {
 		echo 'No items to show';
 	}
 }
 catch(SoapFault $soapFault) {
 	echo 'Error: ' . $soapFault->faultstring;
 }
 

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /v3/RestrictedService.asmx HTTP/1.1
Host: api.tradera.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://api.tradera.com/GetSellerItems"

<?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:Header>
    <AuthenticationHeader xmlns="http://api.tradera.com">
      <AppId>int</AppId>
      <AppKey>string</AppKey>
    </AuthenticationHeader>
    <AuthorizationHeader xmlns="http://api.tradera.com">
      <UserId>int</UserId>
      <Token>string</Token>
    </AuthorizationHeader>
    <ConfigurationHeader xmlns="http://api.tradera.com">
      <Sandbox>int</Sandbox>
      <MaxResultAge>int</MaxResultAge>
    </ConfigurationHeader>
  </soap:Header>
  <soap:Body>
    <GetSellerItems xmlns="http://api.tradera.com">
      <categoryId>int</categoryId>
      <filterActive>All or Active or Inactive</filterActive>
      <minEndDate>dateTime</minEndDate>
      <maxEndDate>dateTime</maxEndDate>
      <filterItemType>All or Auction or PureBuyItNow or ShopItem</filterItemType>
    </GetSellerItems>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?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>
    <GetSellerItemsResponse xmlns="http://api.tradera.com">
      <GetSellerItemsResult>
        <Item>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <PaymentOptions>
            <int>int</int>
            <int>int</int>
          </PaymentOptions>
          <ImageLinks>
            <string>string</string>
            <string>string</string>
          </ImageLinks>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Status>
            <Ended>boolean</Ended>
            <GotBidders>boolean</GotBidders>
            <GotWinner>boolean</GotWinner>
          </Status>
          <StartQuantity>int</StartQuantity>
          <RemainingQuantity>int</RemainingQuantity>
          <ItemType>Auction or PureBuyItNow or ShopItem</ItemType>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <Id>int</Id>
          <VAT>int</VAT>
          <ShortDescription>string</ShortDescription>
          <OwnReferences>
            <string>string</string>
            <string>string</string>
          </OwnReferences>
          <AttributeValues>
            <TermAttributeValues>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
            </TermAttributeValues>
            <NumberAttributeValues>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
            </NumberAttributeValues>
          </AttributeValues>
          <ItemAttributes>
            <int>int</int>
            <int>int</int>
          </ItemAttributes>
          <LongDescription>string</LongDescription>
          <StartDate>dateTime</StartDate>
          <EndDate>dateTime</EndDate>
          <CategoryId>int</CategoryId>
          <OpeningBid>int</OpeningBid>
          <ReservePrice>int</ReservePrice>
          <ReservePriceReached>boolean</ReservePriceReached>
          <BuyItNowPrice>int</BuyItNowPrice>
          <NextBid>int</NextBid>
          <PaymentCondition>string</PaymentCondition>
          <ShippingCondition>string</ShippingCondition>
          <AcceptsPickup>boolean</AcceptsPickup>
          <TotalBids>int</TotalBids>
          <MaxBid>int</MaxBid>
          <Bold>boolean</Bold>
          <Thumbnail>boolean</Thumbnail>
          <Highlight>boolean</Highlight>
          <FeaturedItem>boolean</FeaturedItem>
          <ItemLink>string</ItemLink>
          <ThumbnailLink>string</ThumbnailLink>
          <AcceptedBuyerId>int</AcceptedBuyerId>
          <Paypal>boolean</Paypal>
          <PaymentTypeId>int</PaymentTypeId>
          <Seller>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Seller>
          <MaxBidder>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </MaxBidder>
        </Item>
        <Item>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <PaymentOptions>
            <int>int</int>
            <int>int</int>
          </PaymentOptions>
          <ImageLinks>
            <string>string</string>
            <string>string</string>
          </ImageLinks>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Status>
            <Ended>boolean</Ended>
            <GotBidders>boolean</GotBidders>
            <GotWinner>boolean</GotWinner>
          </Status>
          <StartQuantity>int</StartQuantity>
          <RemainingQuantity>int</RemainingQuantity>
          <ItemType>Auction or PureBuyItNow or ShopItem</ItemType>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <Id>int</Id>
          <VAT>int</VAT>
          <ShortDescription>string</ShortDescription>
          <OwnReferences>
            <string>string</string>
            <string>string</string>
          </OwnReferences>
          <AttributeValues>
            <TermAttributeValues>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
            </TermAttributeValues>
            <NumberAttributeValues>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
            </NumberAttributeValues>
          </AttributeValues>
          <ItemAttributes>
            <int>int</int>
            <int>int</int>
          </ItemAttributes>
          <LongDescription>string</LongDescription>
          <StartDate>dateTime</StartDate>
          <EndDate>dateTime</EndDate>
          <CategoryId>int</CategoryId>
          <OpeningBid>int</OpeningBid>
          <ReservePrice>int</ReservePrice>
          <ReservePriceReached>boolean</ReservePriceReached>
          <BuyItNowPrice>int</BuyItNowPrice>
          <NextBid>int</NextBid>
          <PaymentCondition>string</PaymentCondition>
          <ShippingCondition>string</ShippingCondition>
          <AcceptsPickup>boolean</AcceptsPickup>
          <TotalBids>int</TotalBids>
          <MaxBid>int</MaxBid>
          <Bold>boolean</Bold>
          <Thumbnail>boolean</Thumbnail>
          <Highlight>boolean</Highlight>
          <FeaturedItem>boolean</FeaturedItem>
          <ItemLink>string</ItemLink>
          <ThumbnailLink>string</ThumbnailLink>
          <AcceptedBuyerId>int</AcceptedBuyerId>
          <Paypal>boolean</Paypal>
          <PaymentTypeId>int</PaymentTypeId>
          <Seller>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Seller>
          <MaxBidder>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </MaxBidder>
        </Item>
      </GetSellerItemsResult>
    </GetSellerItemsResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /v3/RestrictedService.asmx HTTP/1.1
Host: api.tradera.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <AuthenticationHeader xmlns="http://api.tradera.com">
      <AppId>int</AppId>
      <AppKey>string</AppKey>
    </AuthenticationHeader>
    <AuthorizationHeader xmlns="http://api.tradera.com">
      <UserId>int</UserId>
      <Token>string</Token>
    </AuthorizationHeader>
    <ConfigurationHeader xmlns="http://api.tradera.com">
      <Sandbox>int</Sandbox>
      <MaxResultAge>int</MaxResultAge>
    </ConfigurationHeader>
  </soap12:Header>
  <soap12:Body>
    <GetSellerItems xmlns="http://api.tradera.com">
      <categoryId>int</categoryId>
      <filterActive>All or Active or Inactive</filterActive>
      <minEndDate>dateTime</minEndDate>
      <maxEndDate>dateTime</maxEndDate>
      <filterItemType>All or Auction or PureBuyItNow or ShopItem</filterItemType>
    </GetSellerItems>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetSellerItemsResponse xmlns="http://api.tradera.com">
      <GetSellerItemsResult>
        <Item>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <PaymentOptions>
            <int>int</int>
            <int>int</int>
          </PaymentOptions>
          <ImageLinks>
            <string>string</string>
            <string>string</string>
          </ImageLinks>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Status>
            <Ended>boolean</Ended>
            <GotBidders>boolean</GotBidders>
            <GotWinner>boolean</GotWinner>
          </Status>
          <StartQuantity>int</StartQuantity>
          <RemainingQuantity>int</RemainingQuantity>
          <ItemType>Auction or PureBuyItNow or ShopItem</ItemType>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <Id>int</Id>
          <VAT>int</VAT>
          <ShortDescription>string</ShortDescription>
          <OwnReferences>
            <string>string</string>
            <string>string</string>
          </OwnReferences>
          <AttributeValues>
            <TermAttributeValues>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
            </TermAttributeValues>
            <NumberAttributeValues>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
            </NumberAttributeValues>
          </AttributeValues>
          <ItemAttributes>
            <int>int</int>
            <int>int</int>
          </ItemAttributes>
          <LongDescription>string</LongDescription>
          <StartDate>dateTime</StartDate>
          <EndDate>dateTime</EndDate>
          <CategoryId>int</CategoryId>
          <OpeningBid>int</OpeningBid>
          <ReservePrice>int</ReservePrice>
          <ReservePriceReached>boolean</ReservePriceReached>
          <BuyItNowPrice>int</BuyItNowPrice>
          <NextBid>int</NextBid>
          <PaymentCondition>string</PaymentCondition>
          <ShippingCondition>string</ShippingCondition>
          <AcceptsPickup>boolean</AcceptsPickup>
          <TotalBids>int</TotalBids>
          <MaxBid>int</MaxBid>
          <Bold>boolean</Bold>
          <Thumbnail>boolean</Thumbnail>
          <Highlight>boolean</Highlight>
          <FeaturedItem>boolean</FeaturedItem>
          <ItemLink>string</ItemLink>
          <ThumbnailLink>string</ThumbnailLink>
          <AcceptedBuyerId>int</AcceptedBuyerId>
          <Paypal>boolean</Paypal>
          <PaymentTypeId>int</PaymentTypeId>
          <Seller>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Seller>
          <MaxBidder>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </MaxBidder>
        </Item>
        <Item>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <ShippingOptions>
            <ShippingOptionId>int</ShippingOptionId>
            <Cost>int</Cost>
            <ShippingWeight>decimal</ShippingWeight>
            <ShippingProductId>int</ShippingProductId>
            <ShippingProviderId>int</ShippingProviderId>
          </ShippingOptions>
          <PaymentOptions>
            <int>int</int>
            <int>int</int>
          </PaymentOptions>
          <ImageLinks>
            <string>string</string>
            <string>string</string>
          </ImageLinks>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Buyers>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Buyers>
          <Status>
            <Ended>boolean</Ended>
            <GotBidders>boolean</GotBidders>
            <GotWinner>boolean</GotWinner>
          </Status>
          <StartQuantity>int</StartQuantity>
          <RemainingQuantity>int</RemainingQuantity>
          <ItemType>Auction or PureBuyItNow or ShopItem</ItemType>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <DetailedImageLinks>
            <Url>string</Url>
            <Format>string</Format>
          </DetailedImageLinks>
          <Id>int</Id>
          <VAT>int</VAT>
          <ShortDescription>string</ShortDescription>
          <OwnReferences>
            <string>string</string>
            <string>string</string>
          </OwnReferences>
          <AttributeValues>
            <TermAttributeValues>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
              <TermAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </TermAttributeValue>
            </TermAttributeValues>
            <NumberAttributeValues>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
              <NumberAttributeValue>
                <Id>int</Id>
                <Name>string</Name>
                <Values xsi:nil="true" />
              </NumberAttributeValue>
            </NumberAttributeValues>
          </AttributeValues>
          <ItemAttributes>
            <int>int</int>
            <int>int</int>
          </ItemAttributes>
          <LongDescription>string</LongDescription>
          <StartDate>dateTime</StartDate>
          <EndDate>dateTime</EndDate>
          <CategoryId>int</CategoryId>
          <OpeningBid>int</OpeningBid>
          <ReservePrice>int</ReservePrice>
          <ReservePriceReached>boolean</ReservePriceReached>
          <BuyItNowPrice>int</BuyItNowPrice>
          <NextBid>int</NextBid>
          <PaymentCondition>string</PaymentCondition>
          <ShippingCondition>string</ShippingCondition>
          <AcceptsPickup>boolean</AcceptsPickup>
          <TotalBids>int</TotalBids>
          <MaxBid>int</MaxBid>
          <Bold>boolean</Bold>
          <Thumbnail>boolean</Thumbnail>
          <Highlight>boolean</Highlight>
          <FeaturedItem>boolean</FeaturedItem>
          <ItemLink>string</ItemLink>
          <ThumbnailLink>string</ThumbnailLink>
          <AcceptedBuyerId>int</AcceptedBuyerId>
          <Paypal>boolean</Paypal>
          <PaymentTypeId>int</PaymentTypeId>
          <Seller>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </Seller>
          <MaxBidder>
            <Id>int</Id>
            <Alias>string</Alias>
            <FirstName>string</FirstName>
            <LastName>string</LastName>
            <Email>string</Email>
            <TotalRating>int</TotalRating>
            <PhoneNumber>string</PhoneNumber>
            <MobilePhoneNumber>string</MobilePhoneNumber>
            <Address>string</Address>
            <ZipCode>string</ZipCode>
            <City>string</City>
            <CountryName>string</CountryName>
            <PersonalNumber>string</PersonalNumber>
            <TransactionId>int</TransactionId>
          </MaxBidder>
        </Item>
      </GetSellerItemsResult>
    </GetSellerItemsResponse>
  </soap12:Body>
</soap12:Envelope>

XHTML CSS