GetDescriptionTemplates
Use this call to retrieve the Theme and Layout specifications for the display of an item's description. If desired, you can retrieve template information for specific categories and you can set the LastModifiedTime field to return templates by date.
Note: As of May 31, 2020, sellers are no longer able to use Listing Designer templates when they create or revise listings. Existing listings that are already using a Listing Designer template will remain unchanged. The GetDescriptionTemplates call will eventually get deprecated and decommissioned, and more information will be provided on timing at a later date. The GetDescriptionTemplates call will still retrieve Listing Designer template data, but none of retrieved templates will be usable to create or revise a listing.See Using Description Templates.
Output Detail Controls Samples Change History |
Input
See also Samples.
The box below lists all fields that could be included in the call request. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).
See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are (or soon will be) non-operational.
The XML prototype does not include requester credentials. This is a documentation limitation only (see Standard Requester Credentials for Making Calls).
<?xml version="1.0" encoding="utf-8"?> <GetDescriptionTemplatesRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <!-- Call-specific Input Fields --> <CategoryID> string </CategoryID> <LastModifiedTime> dateTime </LastModifiedTime> <MotorVehicles> boolean </MotorVehicles> <!-- Standard Input Fields --> <ErrorLanguage> string </ErrorLanguage> <MessageID> string </MessageID> <Version> string </Version> <WarningLevel> WarningLevelCodeType </WarningLevel> </GetDescriptionTemplatesRequest>
Argument | Type | Occurrence | Meaning |
---|
Call-specific Input Fields [Jump to standard fields] |
CategoryID | string | Optional |
A CategoryID value can be specified if the seller would like to only see the Listing Designer templates that are available for that eBay category. This field will be ignored if the MotorVehicles boolean field is also included in the call request and set to true .Max length: 10. |
LastModifiedTime | dateTime | Optional |
This dateTime filter can be included and used if the user only wants to check for recently-added Listing Designer templates. If this filter is used, only the Listing Designer templates that have been added/modified after the specified timestamp will be returned in the response. Typically, you will pass in the timestamp value that was returned the last time you refreshed the list of Listing Designer templates. |
MotorVehicles | boolean | Optional |
This boolean field should be included and set to true if the user would only like to see the Listing Designer templates that are available for motor vehicle categories. This field will override any CategoryID value that is specified in the call request. Note: Motor vehicle-related Listing Designer templates are only available for eBay Motors on the US and Canada (English) marketplaces. To retrieve eBay US Motors Listing Designer templates, the SITEID HTTP header value must be set to 100 , which is the identifier of the eBay US Motors vertical (ebay.com/motors). Default: false. |
Standard Input Fields |
ErrorLanguage | string | Optional |
Use ErrorLanguage to return error strings for the call in a different language from the language commonly associated with the site that the requesting user is registered with. Below are some examples from different countries.
|
||||||||||||||||||||||||||||||||||||||||
MessageID | string | Optional |
Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned. Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable. |
||||||||||||||||||||||||||||||||||||||||
Version | string | Conditional |
The version number of the API code that you are programming against (e.g., 1149). The version you specify for a call has these basic effects:
For the SOAP API: If you are using the SOAP API, this field is required. Specify the version of the WSDL your application is using. For the XML API: If you are using the XML API, this field has no effect. Instead, specify the version in the X-EBAY-API-COMPATIBILITY-LEVEL HTTP header. (If you specify Version in the body of an XML API request and it is different from the value in the HTTP header, eBay returns an informational warning that the value in the HTTP header was used instead.) See:
|
||||||||||||||||||||||||||||||||||||||||
WarningLevel | WarningLevelCodeType | Optional |
Controls whether or not to return warnings when the application passes unrecognized or deprecated elements in a request. An unrecognized element is one that is not defined in any supported version of the schema. Schema element names are case-sensitive, so using WarningLevel can also help you remove any potential hidden bugs within your application due to incorrect case or spelling in field names before you put your application into the Production environment. WarningLevel only validates elements; it doesn't validate XML attributes. It also doesn't control warnings related to user-entered strings or numbers, or warnings for logical errors. We recommend that you only use this during development and debugging. Do not use this in requests performed in the Production environment. Applicable values: High if the user wishes to receive warnings when the application passes unrecognized or deprecated elements in an API call request. Setting the WarningLevel value to High is not recommended in a production environment. Instead, it should only be used during the development/debugging stage.Low if the user does not wish to receive warnings when the application passes unrecognized or deprecated elements in an API call request. This is the default value if WarningLevel is not specified in the call request.See Warning Level. |
Input Detail Controls Samples Change History |
Output
See also Samples.
The box below lists all fields that might be returned in the response. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).
See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are not returned (or soon will not be returned) or are not operational (or soon will be non-operational).
<?xml version="1.0" encoding="utf-8"?> <GetDescriptionTemplatesResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <!-- Call-specific Output Fields --> <DescriptionTemplate> DescriptionTemplateType <GroupID> int </GroupID> <ID> int </ID> <ImageURL> anyURI </ImageURL> <Name> string </Name> <TemplateXML> string </TemplateXML> <Type> DescriptionTemplateCodeType </Type> </DescriptionTemplate> <!-- ... more DescriptionTemplate nodes allowed here ... --> <LayoutTotal> int </LayoutTotal> <ObsoleteLayoutID> int </ObsoleteLayoutID> <!-- ... more ObsoleteLayoutID values allowed here ... --> <ObsoleteThemeID> int </ObsoleteThemeID> <!-- ... more ObsoleteThemeID values allowed here ... --> <ThemeGroup> ThemeGroupType <GroupID> int </GroupID> <GroupName> string </GroupName> <ThemeID> int </ThemeID> <!-- ... more ThemeID values allowed here ... --> <ThemeTotal> int </ThemeTotal> </ThemeGroup> <!-- ... more ThemeGroup nodes allowed here ... --> <ThemeTotal> int </ThemeTotal> <!-- Standard Output Fields --> <Ack> AckCodeType </Ack> <Build> string </Build> <CorrelationID> string </CorrelationID> <Errors> ErrorType <ErrorClassification> ErrorClassificationCodeType </ErrorClassification> <ErrorCode> token </ErrorCode> <ErrorParameters ParamID="string"> ErrorParameterType <Value> string </Value> </ErrorParameters> <!-- ... more ErrorParameters nodes allowed here ... --> <LongMessage> string </LongMessage> <SeverityCode> SeverityCodeType </SeverityCode> <ShortMessage> string </ShortMessage> </Errors> <!-- ... more Errors nodes allowed here ... --> <HardExpirationWarning> string </HardExpirationWarning> <Timestamp> dateTime </Timestamp> <Version> string </Version> </GetDescriptionTemplatesResponse>
Return Value | Type | Occurrence | Meaning |
---|
Call-specific Output Fields [Jump to standard fields] |
DescriptionTemplate | DescriptionTemplateType | Always,
repeatable: [1..*] |
A DescriptionTemplate container is retrieved for each available Listing Designer template. Each DescriptionTemplate container includes the unique identifier of the template, the Listing Designer Theme Group that it belongs to, the CDATA representation of the Listing Designer template, and the URL to an image that serves as an example of the Listing Designer template. |
DescriptionTemplate.GroupID | int | Conditionally | This integer value is a unique identifier for the Listing Designer Theme group, such as Holiday/Seasonal, Special Events, or Patterns/Textures. This field is not applicable and will not be returned for a Listing Designer Layout. |
DescriptionTemplate.ID | int | Always | This integer value is a unique identifier of the Listing Designer Theme or Layout. |
DescriptionTemplate.ImageURL | anyURI | Always | This URL is the path to a small image providing a sample of the appearance of a Listing Designer Theme or Layout. |
DescriptionTemplate.Name | string | Always | This string value is the name of the Listing Designer Theme or Layout. |
DescriptionTemplate .TemplateXML |
string | Conditionally |
This string value is actually a CDATA representation of the Listing Designer template. Image-related elements in a template include ThemeTop , ThemeUserCellTop , ThemeUserContent, , ThemeUserCellBottom , and ThemeBottom . This field is not applicable and will not be returned for a Listing Designer Layout.
|
DescriptionTemplate.Type | DescriptionTemplateCodeType | Always |
This enumeration value indicates that the information returned under the DescriptionTemplate container is related to a Listing Designer Theme or Layout.
Applicable values: Code so that your app gracefully handles any future changes to this list. |
LayoutTotal | int | Always |
This integer value indicates the total number of Listing Designer Layout templates that were retrieved. This field is always returned, even if it is 0
|
ObsoleteLayoutID | int | Conditionally,
repeatable: [0..*] |
The unique identifier of a Listing Designer Layout template that is now obsolete. An ObsoleteLayoutID field is returned for each obsolete Listing Designer Layout template. |
ObsoleteThemeID | int | Conditionally,
repeatable: [0..*] |
The unique identifier of a Listing Designer Theme template that is now obsolete. An ObsoleteThemeID field is returned for each obsolete Listing Designer Theme template. |
ThemeGroup | ThemeGroupType | Conditionally,
repeatable: [0..*] |
A ThemeGroup container is retrieved for each available Listing Designer Theme Group. Each ThemeGroup container includes the unique identifier of the Theme Group, the Theme Group name, and all of the Listing Designer Theme template that belong to that Theme Group. |
ThemeGroup.GroupID | int | Conditionally | Unique identifier for this theme group. |
ThemeGroup.GroupName | string | Conditionally | Name of this theme group (localized to the language associated with the eBay site). |
ThemeGroup.ThemeID | int | Conditionally,
repeatable: [0..*] |
Unique identifier for each theme in this group. There is at least one theme in a theme group. |
ThemeGroup.ThemeTotal | int | Conditionally | The number of ThemeID elements in this group. |
ThemeTotal | int | Always |
This integer value indicates the total number of Listing Designer Theme templates that were retrieved. This field is always returned, even if it is 0
|
Standard Output Fields |
Ack | AckCodeType | Always |
A token representing the application-level acknowledgement code that indicates the response status (e.g., success). The AckCodeType list specifies the possible values for the Ack field.
Applicable values: (Not all values in AckCodeType apply to this field.) Code so that your app gracefully handles any future changes to this list. |
Build | string | Always | This refers to the specific software build that eBay used when processing the request and generating the response. This includes the version number plus additional information. eBay Developer Support may request the build information when helping you resolve technical issues. |
CorrelationID | string | Conditionally |
Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned. Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable. |
Errors | ErrorType | Conditionally,
repeatable: [0..*] |
A list of application-level errors (if any) that occurred when eBay processed the request. |
Errors.ErrorClassification | ErrorClassificationCodeType | Conditionally |
API errors are divided between two classes: system errors and request errors.
Applicable values: Code so that your app gracefully handles any future changes to this list. |
Errors.ErrorCode | token | Conditionally |
A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms.
See Errors By Number. |
Errors.ErrorParameters | ErrorParameterType | Conditionally,
repeatable: [0..*] |
This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned. |
Errors.ErrorParameters [ attribute ParamID ] |
string | Conditionally | This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned. |
Errors.ErrorParameters.Value | string | Conditionally | This is the value of the request parameter noted in the ParamID attribute. So, if the ParamID value was ItemID, the value in this field would be the actual value of that ItemID. |
Errors.LongMessage | string | Conditionally | A more detailed description of the condition that raised the error. |
Errors.SeverityCode | SeverityCodeType | Conditionally |
Indicates whether the error is a severe error (causing the request to fail) or an informational error (a warning) that should be communicated to the user.
Applicable values: If the source of the problem is within the application (such as a missing required element), change the application before you retry the request.
See the Error handling section of the Making a Trading API call guide for more information. When a warning occurs, the error is returned in addition to the business data. In this case, you do not need to retry the request (as the original request was successful). However, depending on the cause or nature of the warning, you might need to contact either the end user or eBay to effect a long term solution to the problem to prevent it from reoccurring in the future. Code so that your app gracefully handles any future changes to this list. |
Errors.ShortMessage | string | Conditionally | A brief description of the condition that raised the error. |
HardExpirationWarning | string | Conditionally | Expiration date of the user's authentication token. Only returned within the 7-day period prior to a token's expiration. To ensure that user authentication tokens are secure and to help avoid a user's token being compromised, tokens have a limited life span. A token is only valid for a period of time (set by eBay). After this amount of time has passed, the token expires and must be replaced with a new token. |
Timestamp | dateTime | Always |
This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See the Time Values section in the eBay Features Guide for information about this time format and converting to and from the GMT time zone. Note: GetCategories and other Trading API calls are designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, this time value reflects the time the cached response was created. Thus, this value is not necessarily when the request was processed. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, this time value does reflect when the request was processed. |
Version | string | Always | The version of the response payload schema. Indicates the version of the schema that eBay used to process the request. See the Standard Data for All Calls section in the eBay Features Guide for information on using the response version when troubleshooting CustomCode values that appear in the response. |
Input Output Samples Change History |
Detail Controls
DetailLevel
This call does not support varying Detail Levels. You do not need to pass DetailLevel in the request.
Input Output Detail Controls Change History |
Samples
New to making API calls? Please see Making a Call.
Note: Some item IDs, user IDs, or other data in these samples might no longer be active on eBay. If necessary, you can substitute current eBay data in your requests.
Retrieves the current set of item description templates.
Description
Specify a CategoryID if you want to return the templates for a specific category.
Input
XML format.
<?xml version="1.0" encoding="utf-8"?>
<GetDescriptionTemplatesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>A*******3</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
</GetDescriptionTemplatesRequest>
Output
XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetDescriptionTemplatesResponse
xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2019-11-04T20:32:00.173Z</Timestamp>
<Ack>Success</Ack>
<Version>1131</Version>
<Build>E1131_UNI_API5_19098188_R1</Build>
<DescriptionTemplate>
<GroupID>0</GroupID>
<ID>10</ID>
<ImageURL>http://pics.ebay.com/aw/pics/vit/None2_sample_100x120.gif</ImageURL>
<Name>None</Name>
<TemplateXML><ThemeUserContent></ThemeUserContent></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>2</GroupID>
<ID>37339</ID>
<ImageURL>http://pics.ebay.com/aw/pics/ca/vit/clothing_and_accessories_sample_100x120.gif</ImageURL>
<Name>Accessories for Women</Name>
<TemplateXML><ThemeTop><![CDATA[<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" WIDTH="100%"><TR><TD WIDTH="1%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="35" HEIGHT="1" /></TD><TD WIDTH="35%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="196" HEIGHT="1" /></TD><TD WIDTH="23%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="121" HEIGHT="1" /></TD><TD WIDTH="40%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="215" HEIGHT="1" /></TD><TD WIDTH="1%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="37" HEIGHT="1" /></TD></TR><TR ALIGN="center"><TD ROWSPAN="3" BACKGROUND="http://pics.ebay.com/aw/pics/vit/fashions/fashionLeft_35x600.gif"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="1" HEIGHT="1" /></TD><TD BACKGROUND="http://pics.ebay.com/aw/pics/vit/fashions/fashionHeadExpand_1x78.gif"><IMG SRC="http://pics.ebay.com/aw/pics/vit/fashions/fashionHead2_196x78.gif" WIDTH="196" HEIGHT="78" /></TD><TD BACKGROUND="http://pics.ebay.com/aw/pics/vit/fashions/fashionHeadExpand_1x78.gif"><IMG SRC="http://pics.ebay.com/aw/pics/vit/fashions/fashionhead3_121x78.gif" WIDTH="121" HEIGHT="78" /></TD><TD BACKGROUND="http://pics.ebay.com/aw/pics/vit/fashions/fashionHeadExpand_1x78.gif"><IMG SRC="http://pics.ebay.com/aw/pics/vit/fashions/fashionhead4_215x78.gif" WIDTH="215" HEIGHT="78" /></TD><TD ROWSPAN="3" BACKGROUND="http://pics.ebay.com/aw/pics/vit/fashions/fashionhead5_37x600.gif"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="1" HEIGHT="1" /></TD></TR><TR><TD COLSPAN="3" BGCOLOR="#FFE79C">]]></ThemeTop><ThemeUserCellTop><![CDATA[<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" WIDTH="100%"><TR BGCOLOR="#996699""><TD WIDTH="1%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="3" HEIGHT="3" /></TD><TD WIDTH="98%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="526" HEIGHT="1" /></TD><TD WIDTH="1%"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="3" HEIGHT="1" /></TD></TR><TR><TD BGCOLOR="#996699"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="1" HEIGHT="1" /></TD><TD align="center">]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[</TD><TD BGCOLOR="#996699"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="1" HEIGHT="1" /></TD></TR><TR><TD BGCOLOR="#996699" COLSPAN="3"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="1" HEIGHT="3" /></TD></TR></TABLE>]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</TD></TR><TR><TD COLSPAN="3" BGCOLOR="#000000"><IMG SRC="http://pics.ebay.com/aw/pics/x.gif" WIDTH="1" HEIGHT="22" /></TD></TR></TABLE>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>6</GroupID>
<ID>373250</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/animal_sample_100x120.gif</ImageURL>
<Name>Animal Prints</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/animal/hdr1bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/hdr1_animal.gif"></td><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/animal/hdr2bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/hdr2_animal.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/animal/hdr3bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/hdr3_animal.gif"></td></tr><tr valign="top"><td align="left" colspan="3" bgcolor="#ffffff"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/animal/left1bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/left1_animal.gif"></td><td align="left" valign="top" width="98%"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[ ]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/animal/right1bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/right1_animal.gif"></td></tr></table></td></tr><tr valign="top"><td align="left" colspan="3"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/animal/ftr1bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/ftr1_animal.gif"></td><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/animal/ftr2bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/ftr2_animal.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/animal/ftr3bkgd_animal.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/animal/ftr3_animal.gif"></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>3</GroupID>
<ID>132741</ID>
<ImageURL>http://pics.ebay.com/aw/pics/vit/Anniversary_sample_100x120.gif</ImageURL>
<Name>Anniversary-Gifts</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#FFFFFF"><tr><td width="16%"><img src="http://pics.ebay.com/aw/pics/x.gif" width="76" height="1" /></td><td width="21%"><img src="http://pics.ebay.com/aw/pics/x.gif" width="16" height="1" /></td><td width="26%"><img src="http://pics.ebay.com/aw/pics/x.gif" width="144" height="1" /></td><td width="21%"><img src="http://pics.ebay.com/aw/pics/x.gif" width="16" height="1" /></td><td width="16%"><img src="http://pics.ebay.com/aw/pics/x.gif" width="77" height="1" /></td></tr><tr><td align="left" background="http://pics.ebay.com/aw/pics/vit/anniversary/hdr1Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/vit/anniversary/hdr1_anniversary.gif" width="76" height="86" alt="" border="0" /></td><td background="http://pics.ebay.com/aw/pics/vit/anniversary/hdr1Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/x.gif" width="16" height="1" /></td><td align="center" background="http://pics.ebay.com/aw/pics/vit/anniversary/hdr2Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/vit/anniversary/hdr2_anniversary.gif" width="144" height="86" alt="" border="0" /></td><td background="http://pics.ebay.com/aw/pics/vit/anniversary/hdr2Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/x.gif" width="16" height="1" /></td><td align="right" background="http://pics.ebay.com/aw/pics/vit/anniversary/hdr3Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/vit/anniversary/hdr3_anniversary.gif" width="77" height="86" alt="" border="0" /></td></tr><tr><td colspan="5" valign="top" width="100%"><table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#FFFFFF"><tr><td width="100%">]]></ThemeTop><ThemeUserCellTop><![CDATA[]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</td></tr></table></td></tr><tr><td align="left" background="http://pics.ebay.com/aw/pics/vit/anniversary/ftr1Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/vit/anniversary/ftr1_anniversary.gif" width="76" height="90" alt="" border="0" /></td><td background="http://pics.ebay.com/aw/pics/vit/anniversary/ftr1Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/x.gif" width="16" height="1" /></td><td align="center" background="http://pics.ebay.com/aw/pics/vit/anniversary/ftr2Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/x.gif" width="144" height="90" alt="" border="0" /></td><td background="http://pics.ebay.com/aw/pics/vit/anniversary/ftr2Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/x.gif" width="16" height="1" /></td><td align="right" background="http://pics.ebay.com/aw/pics/vit/anniversary/ftr2Bkg_anniversary.gif"><img src="http://pics.ebay.com/aw/pics/vit/anniversary/ftr2_anniversary.gif" width="56" height="90" alt="" border="0" /></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>5</GroupID>
<ID>345058</ID>
<ImageURL>http://pics.ebay.com/aw/pics/vit/Antique_Scroll_100x120.gif</ImageURL>
<Name>Antique Scroll</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center" background="http://pics.ebaystatic.com/aw/pics/vit/antique/hdr1bkgd_antique.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antique/hdr1_antique.gif" /></td></tr><tr valign="top"><td align="left" bgcolor="#eeeebe"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td></tr><tr valign="top"><td align="left"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antique/ftr1bkgd_antique.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antique/ftr1_antique.gif" /></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>1</GroupID>
<ID>223353096</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/antiques2_100x120.gif</ImageURL>
<Name>Antiques-Black Frame</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/hdr1bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/hdr1_antiques2.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/hdr2bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/hdr2_antiques2.gif"></td></tr><tr valign="top"><td align="left" colspan="2" bgcolor=""><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/left1bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/left1_antiques2.gif"></td><td align="left" valign="top" width="99%" rowspan="2" ><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/right1bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/right1_antiques2.gif"></td></tr><tr><td width="1%" valign="bottom" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/left2bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/left2_antiques2.gif"></td><td width="1%" valign="bottom" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/right1bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/right2_antiques2.gif"></td></tr></table></td></tr><tr valign="top"><td align="left" colspan="2"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/ftr1bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/ftr1_antiques2.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/antiques2/ftr2bkgd_antiques2.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques2/ftr2_antiques2.gif"></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>1</GroupID>
<ID>223353095</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/antiques1_100x120.gif</ImageURL>
<Name>Antiques-Stained Glass</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antiques1/hdr1bkgd_antiques1.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques1/hdr1_antiques1.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/antiques1/hdr2bkgd_antiques1.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques1/hdr2_antiques1.gif"></td></tr><tr valign="top"><td align="left" colspan="2" bgcolor=""><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/antiques1/left1bkgd_antiques1.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques1/left1_antiques1.gif"></td><td align="left" valign="top" width="99%"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/antiques1/right1bkgd_antiques1.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques1/right1_antiques1.gif"></td></tr></tr></table></td></tr><tr valign="top"><td align="left" colspan="2"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antiques1/ftr1bkgd_antiques1.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques1/ftr1_antiques1.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/antiques1/ftr2bkgd_antiques1.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques1/ftr2_antiques1.gif"></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>1</GroupID>
<ID>223353113</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/antiques3_100x120.gif</ImageURL>
<Name>Antiques-Vintage Items</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antiques3/hdr1bkgd_antiques3.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques3/hdr1_antiques3.gif"></td></tr><tr valign="top"><td align="left" colspan="1" bgcolor=""><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/antiques3/left1bkgd_antiques3.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques3/left1_antiques3.gif"></td><td align="left" valign="top" width="99%"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/antiques3/right1bkgd_antiques3.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques3/right1_antiques3.gif"></td></tr></tr></table></td></tr><tr valign="top"><td align="left" colspan="1"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/antiques3/ftr1bkgd_antiques3.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/antiques3/ftr1_antiques3.gif"></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>5</GroupID>
<ID>373241</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/astrology_sample_100x120.gif</ImageURL>
<Name>Astrology Blue</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/hdr1bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/hdr1_astrology.gif"></td><td align="center" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/hdr2bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/hdr2_astrology.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/hdr3bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/hdr3_astrology.gif"></td></tr><tr valign="top"><td align="left" colspan="3" bgcolor="#FFFFFF"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/left1bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/left1_astrology.gif"></td><td align="left" valign="top" width="98%" rowspan="2"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[ ]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/right1bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/right1_astrology.gif"></td></tr><tr><td width="1%" valign="bottom" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/left2bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/left2_astrology.gif"></td><td width="1%" valign="bottom" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/right2bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/right2_astrology.gif"></td></tr></table></td></tr><tr valign="top"><td align="left" colspan="3"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/ftr1bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/ftr1_astrology.gif"></td><td align="center" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/ftr2bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/ftr2_astrology.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/astrology/ftr3bkgd_astrology.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/astrology/ftr3_astrology.gif"></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<DescriptionTemplate>
<GroupID>4</GroupID>
<ID>345199</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/Autumn_Leaves_Sample_100x120.gif</ImageURL>
<Name>Autumn Leaves</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/fall/hdr1bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/hdr1_fall.gif" /></td><td align="center" background="http://pics.ebaystatic.com/aw/pics/vit/fall/hdr2bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/hdr2_fall.gif" /></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/fall/hdr3bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/hdr3_fall.gif" /></td></tr><tr valign="top"><td align="left" colspan="3" bgcolor="#ffcc00"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/fall/left1bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/left1_fall.gif" /></td><td align="left" valign="top" width="99%" rowspan="2"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td></tr><tr><td width="1%" valign="bottom" background="http://pics.ebaystatic.com/aw/pics/vit/fall/left2bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/left2_fall.gif" /></td></tr></table></td></tr><tr valign="top"><td align="left" colspan="3"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/fall/ftr1bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/ftr1_fall.gif" /></td><td align="center" background="http://pics.ebaystatic.com/aw/pics/vit/fall/ftr2bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/ftr2_fall.gif" /></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/fall/ftr3bkgd_fall.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/fall/ftr3_fall.gif" /></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
...
<DescriptionTemplate>
<GroupID>2</GroupID>
<ID>373239</ID>
<ImageURL>http://pics.ebaystatic.com/aw/pics/vit/yoga_sample_100x120.gif</ImageURL>
<Name>Yoga</Name>
<TemplateXML><ThemeTop><![CDATA[<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/hdr1bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/hdr1_yoga.gif"></td><td align="middle" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/hdr2bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/hdr2_yoga.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/hdr3bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/hdr3_yoga.gif"></td></tr><tr valign="top"><td align="left" colspan="3" bgcolor="#c2ea97"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="1%" valign="top" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/left1bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/left1_yoga.gif"></td><td align="left" valign="top" width="98%"><table cellpadding="0" cellspacing="0" border="0" width="98%" align="center"><tr valign="top"><td><font face="Arial, Helvetica, sans-serif" size="2">]]></ThemeTop><ThemeUserCellTop><![CDATA[ ]]></ThemeUserCellTop><ThemeUserContent/><ThemeUserCellBottom><![CDATA[]]></ThemeUserCellBottom><ThemeBottom><![CDATA[</font></td></tr></table></td><td width="1%" valign="middle" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/right1bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/right1_yoga.gif"></td></tr></table></td></tr><tr valign="top"><td align="left" colspan="3"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/ftr1bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/ftr1_yoga.gif"></td><td align="middle" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/ftr2bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/ftr2_yoga.gif"></td><td align="right" background="http://pics.ebaystatic.com/aw/pics/vit/yoga/ftr3bkgd_yoga.gif"><img src="http://pics.ebaystatic.com/aw/pics/vit/yoga/ftr3_yoga.gif"></td></tr></table></td></tr></table>]]></ThemeBottom></TemplateXML>
<Type>Theme</Type>
</DescriptionTemplate>
<LayoutTotal>0</LayoutTotal>
<ObsoleteLayoutID>10000</ObsoleteLayoutID>
<ObsoleteLayoutID>10001</ObsoleteLayoutID>
<ObsoleteLayoutID>10002</ObsoleteLayoutID>
<ObsoleteLayoutID>10003</ObsoleteLayoutID>
<ObsoleteLayoutID>10004</ObsoleteLayoutID>
<ThemeGroup>
<GroupID>1</GroupID>
<GroupName>New</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>223353096</ThemeID>
<ThemeID>223353095</ThemeID>
<ThemeID>223353113</ThemeID>
<ThemeID>223353101</ThemeID>
<ThemeID>223353102</ThemeID>
<ThemeID>223353087</ThemeID>
<ThemeID>223353088</ThemeID>
<ThemeID>223353089</ThemeID>
<ThemeID>223353111</ThemeID>
<ThemeID>223353077</ThemeID>
<ThemeID>223353078</ThemeID>
<ThemeID>223353073</ThemeID>
<ThemeID>223353105</ThemeID>
<ThemeID>223353068</ThemeID>
<ThemeID>223353076</ThemeID>
<ThemeID>223353075</ThemeID>
<ThemeID>223353069</ThemeID>
<ThemeID>223353115</ThemeID>
<ThemeID>223353091</ThemeID>
<ThemeID>223353090</ThemeID>
<ThemeID>223353100</ThemeID>
<ThemeID>223353099</ThemeID>
<ThemeID>223353067</ThemeID>
<ThemeID>223353106</ThemeID>
<ThemeID>223353116</ThemeID>
<ThemeID>223353114</ThemeID>
<ThemeID>223353108</ThemeID>
<ThemeID>223353107</ThemeID>
<ThemeID>223353083</ThemeID>
<ThemeID>223353084</ThemeID>
<ThemeID>223353109</ThemeID>
<ThemeID>223353080</ThemeID>
<ThemeID>223353086</ThemeID>
<ThemeID>223353085</ThemeID>
<ThemeID>223353072</ThemeID>
<ThemeID>223353110</ThemeID>
<ThemeID>223353081</ThemeID>
<ThemeID>223353082</ThemeID>
<ThemeID>223353071</ThemeID>
<ThemeID>223353094</ThemeID>
<ThemeID>223353093</ThemeID>
<ThemeID>223353092</ThemeID>
<ThemeID>223353079</ThemeID>
<ThemeID>223353074</ThemeID>
<ThemeID>223353070</ThemeID>
<ThemeID>223353103</ThemeID>
<ThemeID>223353104</ThemeID>
<ThemeID>223353112</ThemeID>
<ThemeID>223353098</ThemeID>
<ThemeID>223353097</ThemeID>
<ThemeID>37329</ThemeID>
<ThemeID>373150</ThemeID>
<ThemeID>32741</ThemeID>
<ThemeID>345158</ThemeID>
<ThemeID>373141</ThemeID>
<ThemeID>345099</ThemeID>
<ThemeID>373120</ThemeID>
<ThemeID>345160</ThemeID>
<ThemeID>373121</ThemeID>
<ThemeID>373142</ThemeID>
<ThemeID>345186</ThemeID>
<ThemeID>373152</ThemeID>
<ThemeID>373135</ThemeID>
<ThemeID>373122</ThemeID>
<ThemeID>345061</ThemeID>
<ThemeID>345194</ThemeID>
<ThemeID>37331</ThemeID>
<ThemeID>373143</ThemeID>
<ThemeID>373123</ThemeID>
<ThemeID>373144</ThemeID>
<ThemeID>345105</ThemeID>
<ThemeID>345098</ThemeID>
<ThemeID>32739</ThemeID>
<ThemeID>345096</ThemeID>
<ThemeID>345162</ThemeID>
<ThemeID>345163</ThemeID>
<ThemeID>345164</ThemeID>
<ThemeID>373124</ThemeID>
<ThemeID>345165</ThemeID>
<ThemeID>37323</ThemeID>
<ThemeID>345166</ThemeID>
<ThemeID>373126</ThemeID>
<ThemeID>373125</ThemeID>
<ThemeID>373131</ThemeID>
<ThemeID>373132</ThemeID>
<ThemeID>373149</ThemeID>
<ThemeID>32748</ThemeID>
<ThemeID>373151</ThemeID>
<ThemeID>345080</ThemeID>
<ThemeID>373127</ThemeID>
<ThemeID>373129</ThemeID>
<ThemeID>345172</ThemeID>
<ThemeID>345173</ThemeID>
<ThemeID>345100</ThemeID>
<ThemeID>373146</ThemeID>
<ThemeID>32738</ThemeID>
<ThemeID>373128</ThemeID>
<ThemeID>373157</ThemeID>
<ThemeID>345095</ThemeID>
<ThemeID>345259</ThemeID>
<ThemeID>345187</ThemeID>
<ThemeID>345081</ThemeID>
<ThemeID>32746</ThemeID>
<ThemeID>32744</ThemeID>
<ThemeID>32745</ThemeID>
<ThemeID>32753</ThemeID>
<ThemeID>345192</ThemeID>
<ThemeID>345169</ThemeID>
<ThemeID>345168</ThemeID>
<ThemeID>37332</ThemeID>
<ThemeID>32756</ThemeID>
<ThemeID>32754</ThemeID>
<ThemeID>32755</ThemeID>
<ThemeID>32757</ThemeID>
<ThemeID>345170</ThemeID>
<ThemeID>373130</ThemeID>
<ThemeID>345171</ThemeID>
<ThemeID>345082</ThemeID>
<ThemeID>345101</ThemeID>
<ThemeID>37327</ThemeID>
<ThemeID>345174</ThemeID>
<ThemeID>373140</ThemeID>
<ThemeID>345283</ThemeID>
<ThemeID>345178</ThemeID>
<ThemeID>32737</ThemeID>
<ThemeID>373134</ThemeID>
<ThemeID>345188</ThemeID>
<ThemeID>373154</ThemeID>
<ThemeID>345184</ThemeID>
<ThemeID>345185</ThemeID>
<ThemeID>373153</ThemeID>
<ThemeID>373156</ThemeID>
<ThemeID>373147</ThemeID>
<ThemeID>373155</ThemeID>
<ThemeID>32742</ThemeID>
<ThemeID>32740</ThemeID>
<ThemeID>345189</ThemeID>
<ThemeID>345190</ThemeID>
<ThemeID>345191</ThemeID>
<ThemeID>345097</ThemeID>
<ThemeID>373136</ThemeID>
<ThemeID>345175</ThemeID>
<ThemeID>37328</ThemeID>
<ThemeID>373133</ThemeID>
<ThemeID>345176</ThemeID>
<ThemeID>373119</ThemeID>
<ThemeID>345167</ThemeID>
<ThemeID>373138</ThemeID>
<ThemeID>345177</ThemeID>
<ThemeID>32752</ThemeID>
<ThemeID>345114</ThemeID>
<ThemeID>345112</ThemeID>
<ThemeID>345113</ThemeID>
<ThemeID>345107</ThemeID>
<ThemeID>345106</ThemeID>
<ThemeID>345108</ThemeID>
<ThemeID>345117</ThemeID>
<ThemeID>345116</ThemeID>
<ThemeID>345115</ThemeID>
<ThemeID>345109</ThemeID>
<ThemeID>345111</ThemeID>
<ThemeID>345110</ThemeID>
<ThemeID>37330</ThemeID>
<ThemeID>345102</ThemeID>
<ThemeID>345279</ThemeID>
<ThemeID>373148</ThemeID>
<ThemeID>32749</ThemeID>
<ThemeID>373137</ThemeID>
<ThemeID>373145</ThemeID>
<ThemeID>345103</ThemeID>
<ThemeID>345104</ThemeID>
<ThemeID>373158</ThemeID>
<ThemeID>37324</ThemeID>
<ThemeID>32750</ThemeID>
<ThemeID>345193</ThemeID>
<ThemeID>32747</ThemeID>
<ThemeID>373139</ThemeID>
</ThemeGroup>
<ThemeGroup>
<GroupID>2</GroupID>
<GroupName>Category Specific</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>37339</ThemeID>
<ThemeID>373220</ThemeID>
<ThemeID>345060</ThemeID>
<ThemeID>373221</ThemeID>
<ThemeID>12</ThemeID>
<ThemeID>373235</ThemeID>
<ThemeID>29112</ThemeID>
<ThemeID>373222</ThemeID>
<ThemeID>345161</ThemeID>
<ThemeID>345294</ThemeID>
<ThemeID>373223</ThemeID>
<ThemeID>37326</ThemeID>
<ThemeID>345062</ThemeID>
<ThemeID>29104</ThemeID>
<ThemeID>345063</ThemeID>
<ThemeID>345064</ThemeID>
<ThemeID>29102</ThemeID>
<ThemeID>373224</ThemeID>
<ThemeID>29101</ThemeID>
<ThemeID>345065</ThemeID>
<ThemeID>37333</ThemeID>
<ThemeID>16</ThemeID>
<ThemeID>345066</ThemeID>
<ThemeID>373226</ThemeID>
<ThemeID>373225</ThemeID>
<ThemeID>373231</ThemeID>
<ThemeID>373232</ThemeID>
<ThemeID>373227</ThemeID>
<ThemeID>26</ThemeID>
<ThemeID>373229</ThemeID>
<ThemeID>345072</ThemeID>
<ThemeID>345073</ThemeID>
<ThemeID>29105</ThemeID>
<ThemeID>373228</ThemeID>
<ThemeID>345059</ThemeID>
<ThemeID>345292</ThemeID>
<ThemeID>345069</ThemeID>
<ThemeID>345068</ThemeID>
<ThemeID>37325</ThemeID>
<ThemeID>29103</ThemeID>
<ThemeID>345070</ThemeID>
<ThemeID>29108</ThemeID>
<ThemeID>27</ThemeID>
<ThemeID>373230</ThemeID>
<ThemeID>345071</ThemeID>
<ThemeID>29109</ThemeID>
<ThemeID>37337</ThemeID>
<ThemeID>345074</ThemeID>
<ThemeID>345078</ThemeID>
<ThemeID>132737</ThemeID>
<ThemeID>373234</ThemeID>
<ThemeID>29110</ThemeID>
<ThemeID>373236</ThemeID>
<ThemeID>345075</ThemeID>
<ThemeID>37338</ThemeID>
<ThemeID>373233</ThemeID>
<ThemeID>345076</ThemeID>
<ThemeID>373219</ThemeID>
<ThemeID>345067</ThemeID>
<ThemeID>33</ThemeID>
<ThemeID>373238</ThemeID>
<ThemeID>345077</ThemeID>
<ThemeID>35</ThemeID>
<ThemeID>29106</ThemeID>
<ThemeID>132749</ThemeID>
<ThemeID>373237</ThemeID>
<ThemeID>37334</ThemeID>
<ThemeID>373239</ThemeID>
<ThemeID>373163</ThemeID>
<ThemeID>373167</ThemeID>
<ThemeID>373168</ThemeID>
<ThemeID>373159</ThemeID>
<ThemeID>373161</ThemeID>
<ThemeID>373162</ThemeID>
<ThemeID>32743</ThemeID>
<ThemeID>373166</ThemeID>
<ThemeID>34</ThemeID>
</ThemeGroup>
<ThemeGroup>
<GroupID>3</GroupID>
<GroupName>Special Events</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>132741</ThemeID>
<ThemeID>345260</ThemeID>
<ThemeID>112</ThemeID>
<ThemeID>373243</ThemeID>
<ThemeID>373244</ThemeID>
<ThemeID>345205</ThemeID>
<ThemeID>345198</ThemeID>
<ThemeID>132750</ThemeID>
</ThemeGroup>
<ThemeGroup>
<GroupID>4</GroupID>
<GroupName>Holiday/Seasonal</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>345199</ThemeID>
<ThemeID>132739</ThemeID>
<ThemeID>345200</ThemeID>
<ThemeID>10006</ThemeID>
<ThemeID>29114</ThemeID>
<ThemeID>132744</ThemeID>
<ThemeID>132745</ThemeID>
<ThemeID>132753</ThemeID>
<ThemeID>132756</ThemeID>
<ThemeID>132754</ThemeID>
<ThemeID>132755</ThemeID>
<ThemeID>132757</ThemeID>
<ThemeID>345201</ThemeID>
<ThemeID>10007</ThemeID>
<ThemeID>373240</ThemeID>
<ThemeID>345011</ThemeID>
<ThemeID>345083</ThemeID>
<ThemeID>132740</ThemeID>
<ThemeID>29900</ThemeID>
<ThemeID>37340</ThemeID>
<ThemeID>345202</ThemeID>
<ThemeID>345079</ThemeID>
<ThemeID>345203</ThemeID>
<ThemeID>345204</ThemeID>
<ThemeID>10005</ThemeID>
</ThemeGroup>
<ThemeGroup>
<GroupID>5</GroupID>
<GroupName>Miscellaneous</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>345058</ThemeID>
<ThemeID>373241</ThemeID>
<ThemeID>373242</ThemeID>
<ThemeID>373252</ThemeID>
<ThemeID>36</ThemeID>
<ThemeID>37341</ThemeID>
<ThemeID>373343</ThemeID>
<ThemeID>373344</ThemeID>
<ThemeID>373324</ThemeID>
<ThemeID>373249</ThemeID>
<ThemeID>132748</ThemeID>
<ThemeID>373246</ThemeID>
<ThemeID>132738</ThemeID>
<ThemeID>30701</ThemeID>
<ThemeID>345159</ThemeID>
<ThemeID>345181</ThemeID>
<ThemeID>23</ThemeID>
<ThemeID>345092</ThemeID>
<ThemeID>345182</ThemeID>
<ThemeID>29111</ThemeID>
<ThemeID>373340</ThemeID>
<ThemeID>11</ThemeID>
<ThemeID>345183</ThemeID>
<ThemeID>345278</ThemeID>
<ThemeID>373247</ThemeID>
<ThemeID>132742</ThemeID>
<ThemeID>345089</ThemeID>
<ThemeID>345090</ThemeID>
<ThemeID>345091</ThemeID>
<ThemeID>345197</ThemeID>
<ThemeID>373336</ThemeID>
<ThemeID>345179</ThemeID>
<ThemeID>373248</ThemeID>
<ThemeID>373245</ThemeID>
<ThemeID>19</ThemeID>
<ThemeID>345093</ThemeID>
<ThemeID>373339</ThemeID>
<ThemeID>373164</ThemeID>
<ThemeID>373160</ThemeID>
<ThemeID>373165</ThemeID>
</ThemeGroup>
<ThemeGroup>
<GroupID>6</GroupID>
<GroupName>Patterns/Textures</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>373250</ThemeID>
<ThemeID>345086</ThemeID>
<ThemeID>373352</ThemeID>
<ThemeID>345094</ThemeID>
<ThemeID>345196</ThemeID>
<ThemeID>373326</ThemeID>
<ThemeID>373325</ThemeID>
<ThemeID>373331</ThemeID>
<ThemeID>373332</ThemeID>
<ThemeID>373251</ThemeID>
<ThemeID>345180</ThemeID>
<ThemeID>373257</ThemeID>
<ThemeID>345195</ThemeID>
<ThemeID>345087</ThemeID>
<ThemeID>132746</ThemeID>
<ThemeID>37342</ThemeID>
<ThemeID>373330</ThemeID>
<ThemeID>28</ThemeID>
<ThemeID>345088</ThemeID>
<ThemeID>373254</ThemeID>
<ThemeID>30700</ThemeID>
<ThemeID>345084</ThemeID>
<ThemeID>345085</ThemeID>
<ThemeID>373253</ThemeID>
<ThemeID>373256</ThemeID>
<ThemeID>373255</ThemeID>
<ThemeID>373337</ThemeID>
<ThemeID>373258</ThemeID>
<ThemeID>132747</ThemeID>
</ThemeGroup>
<ThemeGroup>
<GroupID>7</GroupID>
<GroupName>eBay Stores</GroupName>
<ThemeID>10</ThemeID>
<ThemeID>132752</ThemeID>
<ThemeID>345214</ThemeID>
<ThemeID>345212</ThemeID>
<ThemeID>345213</ThemeID>
<ThemeID>345207</ThemeID>
<ThemeID>345206</ThemeID>
<ThemeID>345208</ThemeID>
<ThemeID>345217</ThemeID>
<ThemeID>345216</ThemeID>
<ThemeID>345215</ThemeID>
<ThemeID>345209</ThemeID>
<ThemeID>345211</ThemeID>
<ThemeID>345210</ThemeID>
</ThemeGroup>
<ThemeTotal>231</ThemeTotal>
</GetDescriptionTemplatesResponse>
Input Output Detail Controls Samples |
Change History
Change Date | Description |
---|