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
}
}
}