Unable to filter deleted deals

Problem

When I ask for all deleted deals, filtered by whichever filter, the answer is always blank.

Example

Given:

curl --location --request GET 'https://api.pipedrive.com/v1/filters/666'
{
    "success": true,
    "data": {
        "id": 666,
        ...
        "conditions": {
            "glue": "and",
            "conditions": [
                {
                    "glue": "and",
                    "conditions": []
                },
                {
                    "glue": "or",
                    "conditions": []
                }
            ]
        }
    }
}

Then:

curl --location --request GET 'https://api.pipedrive.com/v1/deals?filter_id=666&status=deleted'
{
    "success": true,
    "data": null,
    "additional_data": {
        "pagination": {
            "start": 0,
            "limit": 100,
            "more_items_in_collection": false
        }
    }
}

Hi,
You might find the following wiki useful

You can also get deals by status (deleted, all_not_deleted )
https://developers.pipedrive.com/docs/api/v1/Deals#getDeals