curl --location '/abandonedcarts?dateFrom=2023-01-01&dateTo=2023-01-31&limit=50&offset=0&q=test&sort=-createdAt'{
"carts": [
{
"cartId": "1234abcd",
"createdAt": "2023-01-01T12:00:00Z",
"abandonedAt": "2023-01-02T12:00:00Z",
"contactId": "5678wxyz",
"items": [
{
"productId": "5678efgh",
"name": "Wireless Mouse",
"quantity": 2,
"price": 20,
"category": "Electronics"
}
]
}
]
}