GET
/v1/products/{product}/featuresList features attached to a product
Lists the features attached to a product. Use the cursor parameters to navigate through the results and expand to request expanded response fields. The response indicates whether another page is available.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
productstringrequired
The unique identifier of the product whose attached features to list. Must be no longer than 5000 characters.
ending_beforestringoptional
An object ID that marks the end of the previous page when retrieving an earlier page. Must be no longer than 5000 characters.
expandarray<string>optional
Fields to expand in the response. Each field name must be no longer than 5000 characters.
limitintegeroptional
The number of objects to return. Must be between 1 and 100 and defaults to 10 when omitted.
starting_afterstringoptional
An object ID that marks the end of the previous page when retrieving the next page. Must be no longer than 5000 characters.
200Returns a list object containing product feature attachments in `data`, the `has_more` pagination flag, the list object type, and the access `url`.
dataarray<ProductFeature>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired
Error handling
product must be a product identifier no longer than 5000 characters. limit must be between 1 and 100 and defaults to 10 when omitted; use starting_after or ending_before to select the result page.