Dynamic filter
documentedRun a dynamic filter to retrieve matching contacts or deals.
POST /dev/api/filters/filter/dynamic-filterDynamic Filtersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$domain}}.agilecrm.com/dev/api/filters/filter/dynamic-filter" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/x-www-form-urlencoded" \
-u "{{$agilecrm_user_email}}:{{AGILECRM_API_KEY}}" \
-d 'page_size={{$page_size}}&global_sort_key={{$global_sort_key}}&filterJson={"rules":[{"LHS":"{{$lhs}}","CONDITION":"EQUALS","RHS":"{{$rhs}}"}],"or_rules":[],"contact_type":"{{$contact_type}}"}' \
-v