# List term contents Retrieves a paginated list of localized content for an attribute term. Endpoint: GET /v1/attributes/{attributeUuid}/terms/{termUuid}/contents Version: 1.0.0 Security: Bearer ## Path parameters: - `attributeUuid` (string, required) Unique identifier of the attribute. - `termUuid` (string, required) Unique identifier of the attribute term. ## Query parameters: - `uuids[eq]` (array) Filter by one or more content UUIDs. Accepts multiple values. - `localeUuids[eq]` (array) Filter by one or more locale UUIDs. Accepts multiple values. - `createdAt[eq]` (string) Filter by exact creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[min]` (string) Filter by minimum creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[max]` (string) Filter by maximum creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[order]` (string) Sort order for creation timestamp. Values: asc, desc. - `updatedAt[eq]` (string) Filter by exact update timestamp. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt[min]` (string) Filter by minimum update timestamp. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt[max]` (string) Filter by maximum update timestamp. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt[order]` (string) Sort order for update timestamp. Values: asc, desc. - `page` (integer) Page number for pagination. Default is 1. - `size` (integer) Page size for pagination. Default is 20. ## Response 200 fields (application/json): - `items` (array, required) - `items.uuid` (string, required) Unique identifier for this term content. - `items.attributeUuid` (string, required) Identifier of the attribute this term belongs to. - `items.attributeTermUuid` (string, required) Identifier of the attribute term this content belongs to. - `items.localeUuid` (string, required) Identifier of the locale this content is localized for. - `items.createdAt` (string, required) Timestamp when this term content was created. Example: "2025-11-23T14:15:22.123456Z" - `items.updatedAt` (string, required) Timestamp when this term content was last modified. Example: "2025-11-23T14:15:22.123456Z" - `items.label` (string, required) Localized display label for the term. - `pagination` (object, required) - `pagination.page` (integer, required) - `pagination.size` (integer, required) - `pagination.totalItems` (integer, required) - `pagination.totalPages` (integer, required) ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)