is_published and is_new are provided, they use OR semantics. When only one is provided, the other is forced to the opposite value.curl --location 'https://api.zid.sa/v1/questions/?id=123&is_anonymous=false&is_owner=false&is_published=true&is_new=true&question=shipping&date_from=2026-01-01&date_to=2026-01-31&ordering=-created_at&page=1&page_size=20' \
--header 'Authorization: {{Autherization}}' \
--header 'Store-ID: {{StoreId}}'{
"results": [
{
"id": 1,
"product": 100,
"product_name": "Product Name",
"customer": "Customer Name",
"name": "John",
"email": "john@example.com",
"is_anonymous": false,
"is_owner": false,
"is_published": true,
"is_new": false,
"question": "Question text?",
"created_at": "2026-08-10T12:00:00Z",
"answers": []
}
],
"count": 10,
"next": "https://api.zid.sa/v1/questions/?page=2",
"previous": null
}