Hi Cronan,
Apologies if I did not get your question first time round - I think I get it now!
You can save custom filters which can filter based on deal fields - presumably this is what the previous developer was talking about?
A list of all filters in the account is returned as part of the bootstrap
endpoint - the response will contain something like the following:
"filters": [
{
"filter": {
"id": "5b606e239007ba1e528d9557",
"name": "Cillian's large deals",
"conditions": [
[
"deal_owner_id",
"is",
"559cd1866f6e656707000001"
],
[
"deal_value",
"greater",
"1000"
]
]
}
},
{ ... }
]
The filter above is one I created in the web app to emulate your scenario - the result is a filter where deal owner is me, and amount is greater than 1000. But presumably in your scenario, you may have a filter already defined for each user. In any case, it appears you need the id
of the filter, which you can see above.
You can test making a request to bootstrap
endpoint using our API browser1.
I hope this solves your issue.
Best regards,
Cillian