## Search `$client->accounts->contacts->search(string accountID, string query): ContactSearchResponse` **get** `/v1/accounts/{accountID}/contacts` Search contacts on a specific account using merged account contacts, network search, and exact identifier lookup. ### Parameters - `accountID: string` Account ID this resource belongs to. - `query: string` Text to search users by. Network-specific behavior. ### Returns - `ContactSearchResponse` - `list items` ### Example ```php accounts->contacts->search('accountID', query: 'x'); var_dump($response); ```