Currently, the /api/v1/contacts/read.php endpoint returns all contacts without supporting search/filter parameters like contact_phone or contact_email.
Requested Feature: Add query parameter support to filter results server-side:
contact_phone - Match by phone number
contact_mobile - Match by mobile number
contact_email - Match by email address
client_name - Match by client name
Example Usage:
$$
/api/v1/contacts/read.php?api_key=xxx&contact_phone=5064040055
$$
Use Case: I'm building an n8n workflow to automatically create ITFlow tickets from Google Voice voicemails/missed calls. Currently I have to pull all 3000+ contacts and search them client-side, which is inefficient.
Similar Functionality: The clients endpoint already supports client_name filtering, so extending this pattern to contacts would be consistent with existing API design.