helpscout-api-php
helpscout-api-php copied to clipboard
Question: How to get a Customer based on a Property
I added a location (Accra) property to customer and want to list the customers base on this property
$filter = (new CustomerFilters())
->withQuery('property:"Accra');
$customers = $client->customers()->list($filter);
This returns an empty result. is it possible to query customers based on a Property?