Returns a paginated list of customer product mix records.
Supports filtering and sorting using Gridify syntax.
By customer: ?filter=CustomerId="customer-123"
By price: ?filter=LastPurchasedPrice>50
Combined: ?filter=CustomerId="customer-123",LastPurchasedPrice>50
?orderBy=LastPurchasedAtUtc desc
?orderBy=LastPurchasedPrice asc
Note: Use SINGLE equals (=) for string comparison, not double equals (==)Request Code Samples
curl --location --request GET 'https://platform.shopranos.eu/api/customer-product-mixes?Page&PageSize&OrderBy&Filter'
Responses
{
"paginationDTO": {
"totalCount": 0,
"pageSize": 0,
"pageNumber": 0,
"numberOfPages": 0
},
"items": [
{
"id": "string",
"productId": "string",
"productVariantId": "string",
"storeId": "string",
"lastPurchasedAtUtc": "2019-08-24T14:15:22.123Z",
"lastPurchasedPrice": 0,
"lastPurchasedQuantity": 0,
"addedManuallyBy": "string",
"addedManuallyAtUtc": "2019-08-24T14:15:22.123Z",
"product": {
"title": "string",
"sku": "string",
"imageUrl": "string"
}
}
]
}
Modified at 2026-03-16 09:55:56