List claimed products
List all products claimed by a specific organization. Requires the organization_id query parameter. Supports ?metadata[key]=value exact-match filtering (C-2734). Supports dietary-sensitivity filtering via ?avoid_sensitivity=histamine,sulfites&min_severity=MODERATE — products flagged with ANY listed sensitivity at or above min_severity are excluded.
Authorizations
Query Parameters
UUID of the Organization whose claimed products should be listed. Caller must have visibility into the organization.
Include LOW-severity dietary-sensitivity flags in each product's sensitivities list. Defaults to false; HIGH and MODERATE flags are always included.
Comma-separated sensitivity slugs to filter out (e.g. histamine,sulfites). Products flagged with ANY of these at or above min_severity are excluded from the results. Empty (default) applies no sensitivity filter.
Severity threshold for avoid_sensitivity filtering: a product is excluded only when it carries a listed sensitivity at this band or higher. One of HIGH, MODERATE, LOW; defaults to MODERATE (LOW flags do not exclude by default). Ignored when avoid_sensitivity is empty. An unrecognized value returns 422.
Page number (1-indexed).
x >= 1Number of items per page (max 100).
1 <= x <= 100Response
OK
Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.
Pagination envelope describing position within the full result set.
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}