Skip to main content

POST/compatibilities/get_multi_compatibility_property_values

This method is used to retrieve product compatibility property values associated with multiple property names, in the specified category.

Compatibility property values can be used alongside the corresponding compatibility property name (retrieved using the getCompatibilityPropertyNames method) to describe the assembly for which an item is compatible.

The categoryId of the compatibility-enabled category for which to retrieve compatibility property values is required in the request body, as well as the propertyNames for which you wish to retrieve associated property values. The propertyFilter array is also required to constrain the output. Only property values associated with the specified name-value pairs will be returned.

Input

Resource URI

POST https://api.ebay.com/sell/metadata/v1/compatibilities/get_multi_compatibility_property_values

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

This method has no URI parameters.

HTTP request headers

All requests made to eBay REST operations require you to provide the Authorization HTTP header for authentication authorization.

The table below shows additional HTTP request headers that are either required, conditionally required, or strongly recommended for this method. Other standard HTTP request headers- opens rest request components page (not in this table) can also be used, but they are optional.

HeaderTypeDescription
Content-TypestringThis header indicates the format of the request body provided by the client.

Its value should be set to application/json.

For more information, refer to HTTP request headers in the Using eBay RESTful APIs guide.

Occurrence: Required

X-EBAY-C-MARKETPLACE-IDstringThis header identifies the seller's eBay marketplace.

See Metadata API requirements and restrictions for supported values.

Occurrence: Required

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

See OAuth access tokens for more information.

Request payload

Copy complete valid JSON to clipboard

Request fields

Input container/fieldTypeDescription
categoryIdstring

The unique identifier of the eBay leaf category for which to retrieve property values.

Use the getAutomotivePartsCompatibilityPolicies method to retrieve a list of categories that support parts compatibility.

Occurrence: Required

propertyFiltersarray of PropertyFilterInner

This array can be used to specify the compatibility properties used to limit the result set. Only values associated with the specified name-value pairs will be returned in the response.

For example, if the propertyName is set to Year and the propertyValue is set to 2022, only compatible vehicles from 2022 will be returned.

At least one property name-value pair must be used.

Occurrence: Required

propertyFilters.propertyNamestring

The name of the property being described.

For example, typical vehicle property names are 'Make', 'Model', 'Year', 'Engine', and 'Trim', but will vary based on the eBay marketplace and the eBay category. Use the getCompatibilityPropertyNames method to retrieve valid property names for a specified category.

Occurrence: Conditional

propertyFilters.propertyValuestring

The value for the property specified in the properyName field.

For example, if the propertyName is Make, then the propertyValue will be the specific make of the vehicle, such as Toyota. Use the getCompatibilityPropertyValues to retreive valid property values associated with a specified property name.

Occurrence: Conditional

propertyFilters.unitOfMeasurementstring

The unit of measurement of the property being described, if applicable.

Occurrence: Optional

propertyFilters.urlstring

The URL associated with the property being described, if applicable.

Occurrence: Optional

propertyNamesarray of string

This comma-delimited array specifies the names of the properties for which to retrieve associated property values.

For example, typical vehicle property names are 'Make', 'Model', 'Year', 'Engine', and 'Trim', but will vary based on the eBay marketplace and the eBay category.

Occurrence: Required

Output

HTTP response headers

This call has no response headers.

Response payload

Response fields

Output container/fieldTypeDescription
compatibilitiesarray of Compatibility

This container defines the compatibility details associated with the specified property name value(s).

Occurrence: Conditional

compatibilities.compatibilityDetailsarray of CompatibilityDetails

This array returns a list of compatibility details associated with the specified property name(s).

Occurrence: Conditional

compatibilities.compatibilityDetails.propertyNamestring

The name of the property being described.

Occurrence: Conditional

compatibilities.compatibilityDetails.propertyValuestring

The value for the property specified in the propertyName field.

Occurrence: Conditional

metadataVersionstring

The version number of the metadata. This version is upticked whenever there are compatibility name changes for the specified marketplace.

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.

StatusMeaning
200Success
204No Content
400Bad Request
401Unauthorized
500Internal Server Error

Error codes

For more on errors, plus the codes of other common errors, see Handling errors.

CodeDomainCategoryMeaning
46000APIAPPLICATIONThere was a problem with an eBay internal system or process. Contact eBay developer support for assistance.
47000APIREQUESTItem compatibilities are not enabled for category ID {{category_id}} or invalid propertyFilter.
47002APIREQUESTThe category {{category_id}} specified in the request does not support compatibilities.
47003APIREQUESTA required field is missing from the request.
47004APIREQUESTInvalid data supplied in the request.
47005APIREQUESTThe marketplace id {{marketplaceId}} specified in the request is invalid.
47006APIREQUESTThe marketplace id {{marketplaceId}} specified in the request does not support compatibility.

Warnings

This call has no warnings.

Samples

New to making API calls? Please see Making a Call.

Note: Identifiers, such as order IDs or user IDs, and personal data in these samples might be anonymized or may no longer be active on eBay. If necessary, substitute current, relevant eBay data in your requests.

Sample 1: Retrieve product compatibility values associated with multiple property names

This method will retrieve product compatibility property values for the specified property names, in the specified category.

Input

The category ID for which to retrieve compatibility property names must be provided in the request body. In addition, the property names for which to retrieve property values must be specified through the propertyNames field in the request. The propertyFilters array can also be input to specify the compatibility properties used to limit the result set. Only values associated with the specified name-value pairs will be returned in the response.

In this sample, all property values associated with the Make, Model, Year property names (in the specified category) will be returned in the response, as long as they are associated with the Year-2022 name-value pair specified in the propertyFilters field.

POSThttps://api.ebay.com/sell/metadata/v1/compatibilities/get_multi_compatibility_property_values

Output

If the call is successful, all property values (within the confines of the specified propertyFilters) for the specified property names are returned.

Note that the response shown is only a sample of a much larger response.