/bff/cart/list
Returns a paginated list of carts for the authenticated organisation, sorted by updated_date descending. Each row includes a precomputed item count and a total price (in cart currency). Filters cover full-text search, empty / non-empty carts, anonymous vs identified, and a date range on updated_date.
Parameters
7 query
pagestringPage number (1-based) for pagination.
limitstringMax items per page (1–500, default 50).
filterFulltextQuerystringFree-text search across cart identifier and customer email / first / last name.
hasItemsstring"true" = only carts with at least one item, "false" = only empty carts.
hasCustomerstring"true" = only carts linked to a contact, "false" = only anonymous carts.
updatedFromstringInclusive lower bound on updated_date (ISO date or datetime).
updatedTostringInclusive upper bound on updated_date (ISO date or datetime).
Request
GET /bff/cart/list
curl -X GET "https://api.bizkithub.com/bff/cart/list?page=1&limit=50&filterFulltextQuery=jan%40example.com&hasItems=true&hasCustomer=true&updatedFrom=example_updatedFrom&updatedTo=example_updatedTo" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.