GET/category_tree/{category_tree_id}/get_item_aspects_for_category
This call returns a list of aspects that are appropriate or necessary for accurately describing items in the specified leaf category. Each aspect identifies an item attribute (for example, color,) for which the seller will be required or encouraged to provide a value (or variation values) when offering an item in that category on eBay.
For each aspect, getItemAspectsForCategory provides complete metadata, including:
- The aspect's data type, format, and entry mode
- Whether the aspect is required in listings
- Whether the aspect can be used for item variations
- Whether the aspect accepts multiple values for an item
- Allowed values for the aspect
Input
Resource URI
This method is supported in Sandbox environment. To access the endpoint, just replace the api.ebay.com
root URI with api.sandbox.ebay.com
URI parameters
Parameter | Type | Description |
---|---|---|
category_tree_id | string | The unique identifier of the eBay category tree. The category tree ID for an eBay marketplace can be retrieved using the getDefaultCategoryTreeId method. Occurrence: Required |
category_id | string | The unique identifier of the leaf category for which aspects are being requested. Note: If the category_id submitted does not identify a leaf node of the tree, this call returns an error. Occurrence: Required |
HTTP request headers
All requests made to eBay REST operations require you to provide the Authorization
HTTP header for authentication authorization.
All other standard RESTful request headers are optional. For more information on standard RESTful request headers, see the HTTP request headers- opens rest request components page table.
OAuth scope
This request requires an access token created with the client credentials grant flow, using one or more scopes from the following list (please check your Application Keys page for a list of OAuth scopes available to your application):
https://api.ebay.com/oauth/api_scope
https://api.ebay.com/oauth/api_scope/metadata.insights
See OAuth access tokens for more information.
Request payload
This call has no payload.
Request fields
This call has no field definitions.
Output
HTTP response headers
This call has no response headers.
Response payload
Response fields
Output container/field | Type | Description |
---|---|---|
aspects | array of Aspect | A list of item aspects (for example, color) that are appropriate or necessary for accurately describing items in a particular leaf category. Each category has a different set of aspects and different requirements for aspect values. Sellers are required or encouraged to provide one or more acceptable values for each aspect when offering an item in that category on eBay. Occurrence: Always |
aspects.aspectConstraint | AspectConstraint | Information about the formatting, occurrence, and support of this aspect. Occurrence: Always |
aspects.aspectConstraint.aspectApplicableTo | array of AspectApplicableToEnum | This value indicate if the aspect identified by the aspects.localizedAspectName field is a product aspect (relevant to catalog products in the category) or an item/instance aspect, which is an aspect whose value will vary based on a particular instance of the product. Occurrence: Conditional |
aspects.aspectConstraint.aspectDataType | AspectDataTypeEnum | The data type of this aspect. Occurrence: Always |
aspects.aspectConstraint.aspectEnabledForVariations | boolean | A value of Occurrence: Always |
aspects.aspectConstraint.aspectFormat | string | Returned only if the value of aspectDataType identifies a data type that requires specific formatting. Currently, this field provides formatting hints as follows:
Occurrence: Conditional |
aspects.aspectConstraint.aspectMaxLength | integer | The maximum length of the item/instance aspect's value. The seller must make sure not to exceed this length when specifying the instance aspect's value for a product. This field is only returned for instance aspects. Occurrence: Conditional |
aspects.aspectConstraint.aspectMode | AspectModeEnum | The manner in which values of this aspect must be specified by the seller (as free text or by selecting from available options). Occurrence: Always |
aspects.aspectConstraint.aspectRequired | boolean | A value of Occurrence: Always |
aspects.aspectConstraint.aspectUsage | AspectUsageEnum | The enumeration value returned in this field will indicate if the corresponding aspect is recommended or optional. Occurrence: Always |
aspects.aspectConstraint.expectedRequiredByDate | string | The expected date after which the aspect will be required. Occurrence: Conditional |
aspects.aspectConstraint.itemToAspectCardinality | ItemToAspectCardinalityEnum | Indicates whether this aspect can accept single or multiple values for items in the specified category. Occurrence: Always |
aspects.aspectValues | array of AspectValue | A list of valid values for this aspect (for example: Occurrence: Always |
aspects.aspectValues.localizedValue | string | The localized value of this aspect. Occurrence: Always |
aspects.aspectValues.valueConstraints | array of ValueConstraint | Not returned if the value of the localizedValue field can always be selected for this aspect of the specified category. Occurrence: Conditional |
aspects.aspectValues.valueConstraints.applicableForLocalizedAspectName | string | The name of the control aspect on which the current aspect value depends. Occurrence: Conditional |
aspects.aspectValues.valueConstraints.applicableForLocalizedAspectValues | array of string | Contains a list of the values of the control aspect on which this aspect's value depends. When the control aspect has any of the specified values, the current value of the current aspect will also be available. Occurrence: Conditional |
aspects.localizedAspectName | string | The localized name of this aspect (for example: Occurrence: Always |
aspects.relevanceIndicator | RelevanceIndicator | The relevance of this aspect. This field is returned if eBay has data on how many searches have been performed for listings in the category using this item aspect. Occurrence: Conditional |
aspects.relevanceIndicator.searchCount | integer | The number of recent searches (based on 30 days of data) for the aspect. Occurrence: Conditional |
HTTP status codes
This call can return one of the following HTTP status codes. For an overview of the status codes, see HTTP status codes in Using eBay RESTful APIs.
Status | Meaning |
---|---|
200 | Success |
204 | No Content |
400 | Bad Request |
404 | Not found |
500 | Internal Server Error |
Error codes
For more on errors, plus the codes of other common errors, see Handling errors.
Code | Domain | Category | Meaning |
---|---|---|---|
62000 | API_TAXONOMY | APPLICATION | There was a problem with an eBay internal system or process. Contact eBay developer support for assistance. |
62004 | API_TAXONOMY | REQUEST | The specified category tree ID was not found. |
62005 | API_TAXONOMY | REQUEST | The specified category ID does not belong to specified category tree. |
62006 | API_TAXONOMY | REQUEST | Missing category ID. |
62008 | API_TAXONOMY | REQUEST | The specified category ID is the root for the category tree. |
62009 | API_TAXONOMY | REQUEST | The specified category ID must be a leaf category. |
Warnings
This call has no warnings.
Samples
This call has no samples.